/*--------------------------------------------------------------------- 
File Name: style.css 
---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- 
import Fonts 
---------------------------------------------------------------------*/
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      min-height: 100vh;
      background: linear-gradient(135deg, #020024, #090979, #001f54);
      color: #ffffff;
      overflow-x: hidden;
    }
    /** Top Button **/
    #myBtn {
        display: none;
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #021b5e5b;
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
      }
      
      #myBtn:hover {
        background-color: #021b5e5b;
      }
    /** End Top Button**/
    /* Particle Canvas */
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

    /* Navigation */
    .navbar {
      position: static;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 10px;
      background: rgba(2, 0, 36, 0.6);
      backdrop-filter: blur(12px);
      z-index: 10;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #fff;
    }

    .logo {
      font-weight: 600;
      font-size: 1.2rem;
      color: #8ab4ff;
    }
    .logo img{
        height: 100px;
        width: 100px;
        padding: auto;
        margin-left: 10px;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 18px;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 7px;
        right: 0;
        background: rgba(2, 0, 36, 0.95);
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        text-align: center;
        padding: 5px 0;
      }

      header h1 {
        font-size: 2.1rem;
      }

      section {
        margin: 20px 12px;
        padding: 20px;
      }
    }

    .nav-links a {
      text-decoration: none;
      color: #ffffff;
      font-size: 0.95rem;
      opacity: 0.9;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #8ab4ff;
    }

    .register-btn {
      padding: 6px 14px;
      border-radius: 20px;
      background: linear-gradient(135deg, #1e90ff, #00bfff);
      color: #fff !important;
      font-weight: 500;
      position: sticky;
      top: 0;
      left: 0;
      z-index: -1;
    }

    header {
      text-align: center;
      padding: 20px 10px;
    }

    header h1 {
      font-size: 2.5rem;
      font-weight: 600;
    }

    header p {
      margin-top: 15px;
      font-size: 1.2rem;
      opacity: 0.9;
    }
    .counter {
      text-align: center;
      font-size: 40px;
      margin-top: 0px;
      color:rgb(255, 255, 255);
    }
    /* Association carousel */
    .association-wrap {
      margin-top: 5px;
      margin-bottom: 5px;
    }

    .association-title {
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 1px;
      color: #eaeef5;
      margin-bottom: 12px;
    }

    .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: rgba(255,255,255,0.04);
      border-radius: 12px;
      padding: 30px 0;
    }

    .carousel-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: scroll-logos 25s linear infinite;
      animation-direction: reverse; /* left to right */
      padding: 0 10px;
    }

    .logo-item {
      min-width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(235, 235, 238, 0.74);
      border-radius: 10px;
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 500;
      white-space: nowrap;
    }

    /* Replace text with real <img> logos if available */
    .logo-item img {
      max-height: 100px;
      max-width: 100px;
      object-fit: contain;
      filter: brightness(1.1);
    }

    @keyframes scroll-logos {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }
    section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 40px;
      background: rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      backdrop-filter: blur(8px);
    }

    section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #f7f9fd;
      text-align: center;
    }

    section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #f7f9fd;
      text-align: center;
    }

    section p {
      text-align: justify;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .grid img{
      display: block; /* Images are inline elements by default, so change to block */
      margin-left: auto; /* Distributes available left space automatically */
      margin-right: auto; /* Distributes available right space automatically */
      width: 50%; /* Optional: set a width smaller than the container for the margin: auto to work effectively */
    }
    .container {
        display: grid;
        grid-template-areas:
          "header header"
          "abc footer";
        grid-template-columns: 1fr 3fr;
        gap: 1px;
        padding: 1px;
      }
      .container div {
        padding: 10px;
      }
      .container div.header {
        grid-area: header;
        text-align: justify;
      }
      .container div.abc {
        grid-area: abc; 
      }
      .container div.footer {
        grid-area: footer; 
      }

    /* Follow us icons */
    .follow-us {
      margin-top: 25px;
    }

    .follow-us h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: #c1d5f8;
      font-weight: 600;
    }
    .con-icon{
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .con-icon i {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: #ffffff;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .conta ul li a {
     color: #a4a7ae;
      }

      .conta ul li a i {
          padding-right: 5px;
      }

      .Informa ul {
          margin-top: 10px;
      }

      .Informa li {
          font-size: 17px;
          line-height: 29px;
          color: #a4a7ae;
      }

      .Informa li a:hover {
          color: #0d90ed;
      }

    .con-icon a:hover {
      background: linear-gradient(135deg, #1e90ff, #00bfff);
      transform: translateY(-3px) scale(1.05);
    }
    .social-icons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      
    }

    .social-icons a {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: #ffffff;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover {
      background: linear-gradient(135deg, #1e90ff, #00bfff);
      transform: translateY(-3px) scale(1.05);
    }
    .card {
      background: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    .card ul{
      font-family:Verdana, Geneva, Tahoma, sans-serif;
      font-style: italic;
      padding-left: 5px;
      list-style-position: inside;
      list-style-type: upper-roman;
    }
    .card li{
      padding-left: 20px;
      font-size: small;
    }
    footer {
      text-align: center;
      padding: 30px 10px;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .botton {
      background: linear-gradient(135deg, #1e47ff, #00bfff);
      display: block;
      margin: auto;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 20px;
      transition: transform 0.2s ease;
    }

    .botton:hover {
      transform: scale(1.05);
      background: linear-gradient(135deg, #1ea5ff, #00ff73,#8ab4ff);
      font-size: 1.2rem;
      font-weight: bold;
    }
    .botton a{
      color: #fff;
      text-decoration: none;
    }
        /* Key Dates Roadmap */
    .roadmap {
      position: relative;
      margin-top: 20px;
      padding: 30px 10px;
    }

    .roadmap::before {
      content: "";
      position: absolute;
      top: 60%;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1e90ff, #8ab4ff);
      transform: translateY(-50%);
      opacity: 0.8;
    }

    .roadmap-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .roadmap-item {
      text-align: center;
      position: relative;
    }

    .roadmap-node {
      width: 18px;
      height: 18px;
      background: #8ab4ff;
      border-radius: 50%;
      margin: 0 auto 14px auto;
      box-shadow: 0 0 15px rgba(138,180,255,0.8);
    }

    .roadmap-card {
      background: rgba(0, 0, 0, 0.35);
      padding: 16px 14px;
      border-radius: 12px;
      backdrop-filter: blur(6px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .roadmap-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .roadmap-card h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: #8ab4ff;
      margin-bottom: 6px;
    }

    .roadmap-card span {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .roadmap::before {
        top: 0;
        left: 50%;
        bottom: 0;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
      }

      .roadmap-track {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .roadmap-item {
        display: grid;
        grid-template-columns: 30px 1fr;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
      }

      .roadmap-node {
        margin: 6px auto 0 auto;
      }
    }
    /* Oval Speaker Cards */
    .speaker-grid-oval {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 26px;
      margin-top: 10px;
    }

    .speaker-card-oval {
      text-align: center;
      background: rgba(0,0,0,0.35);
      padding: 18px 14px 20px;
      border-radius: 18px;
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .speaker-card-oval:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    }

    .speaker-photo-oval {
      width: 120px;
      height: 150px; /* oval look */
      margin: 0 auto 12px auto;
      border-radius: 60% / 50%;
      overflow: hidden;
      border: 3px solid rgba(138,180,255,0.6);
      box-shadow: 0 0 18px rgba(138,180,255,0.35);
      background: rgba(255,255,255,0.05);
    }

    .speaker-photo-oval img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .speaker-post{
      font-size: 1rem;
      font-weight: 600;
      color: #a3beec;
      margin-top: 6px;
      font-style: italic;
    }
    .speaker-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: #8ab4ff;
      margin-top: 4px;
    }

    .speaker-designation {
      font-size: 0.85rem;
      opacity: 0.9;
      line-height: 1.3;
      margin-top: 2px;
    }
    .gap{
      padding: 20px;
    }
  .accordion {
    background: linear-gradient(135deg, #1e47ff, #00bfff);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: block;
    margin: auto;
    border-radius: 10px;
    font-size: 1rem;
    font-style: italic;
    cursor: pointer;
    margin-top: 20px;
  }

  .active, .accordion:hover {
    background: linear-gradient(135deg, #1ea5ff, #00ff73,#8ab4ff);
  }

  .accordion:after {
    content: '\002B';
    color: #fff;
    font-size: 1rem;
    font-weight: bolder;
    float: right;
    margin-left: 5px;
  }

  .active:after {
    content: "\2212";
  }

  .panel {
    padding: 0 30px;
    border-radius: 10px;
    color: black;
    background-color: rgb(255, 255, 255);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  /* Accommodation – Room Overview */

.room-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:20px;
}

.room-card{
  background:rgba(0,0,0,0.35);
  border-radius:18px;
  overflow:hidden;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 25px rgba(0,0,0,0.35);
  transition:transform .3s ease;
}

.room-card:hover{
  transform:translateY(-6px);
}

.room-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  padding:8px;
}

.room-gallery img{
  width:100%;
  height:110px;
  object-fit:cover;
  border-radius:10px;
  transition:transform .4s ease;
}

.room-gallery img:hover{
  transform:scale(1.15);
}

.room-content{
  padding:14px 16px 18px;
  text-align:left;
}

.room-title{
  color:#8ab4ff;
  font-size:1.05rem;
  font-weight:600;
  margin-bottom:6px;
}

.room-desc{
  font-size:.9rem;
  opacity:.9;
  margin-bottom:10px;
}

.meal-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.meal-badge{
  font-size:.78rem;
  padding:5px 10px;
  border-radius:20px;
  background:rgba(138,180,255,0.15);
  border:1px solid rgba(138,180,255,0.35);
  color:#cfe1ff;
}
/* Venue Section */
    #venue .venue-card{background:rgba(0,0,0,0.35);backdrop-filter:blur(10px);border-radius:20px;padding:22px;box-shadow:0 12px 30px rgba(0,0,0,0.35);animation:floatIn 1.2s ease both}
    #venue .venue-title{color:#8ab4ff;font-weight:600;margin-bottom:10px}
    #venue .venue-text{font-size:.95rem;line-height:1.7;opacity:.95}
    @keyframes floatIn{from{opacity:0;transform:translateY(25px)}to{opacity:1;transform:translateY(0)}}

    .reach-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:16px;margin-top:18px}
    .reach-item{background:rgba(138,180,255,0.08);border:1px solid rgba(138,180,255,0.25);border-radius:16px;padding:16px;text-align:center;animation:pulseGlow 2.8s ease-in-out infinite}
    .reach-item i{font-size:26px;color:#8ab4ff;margin-bottom:8px}
    .reach-item h4{font-size:.95rem;margin-bottom:4px;color:#8ab4ff}
    .reach-item p{font-size:.8rem;opacity:.9}

    @keyframes pulseGlow{0%,100%{box-shadow:0 0 0 rgba(138,180,255,0.0)}50%{box-shadow:0 0 18px rgba(138,180,255,0.35)}}

    @media(max-width:900px){#venue .venue-wrap{grid-template-columns:1fr}}

/* Weather Infographic */
    .weather-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:14px;margin-top:14px}
    .weather-item{background:rgba(138,180,255,0.08);border:1px solid rgba(138,180,255,0.28);border-radius:16px;padding:14px;text-align:center;position:relative;overflow:hidden;animation:weatherFloat 3.5s ease-in-out infinite}
    .weather-item i{font-size:24px;color:#8ab4ff;margin-bottom:6px}
    .weather-item h4{font-size:.9rem;color:#8ab4ff;margin-bottom:2px}
    .weather-item span{font-size:.8rem;opacity:.95}
    .weather-bar{height:6px;background:rgba(255,255,255,0.1);border-radius:999px;margin-top:8px;overflow:hidden}
    .weather-fill{height:100%;background:linear-gradient(90deg,#8ab4ff,#cfe1ff);width:0;animation:fillBar 2.5s ease forwards}

    @keyframes weatherFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
    @keyframes fillBar{from{width:0}to{width:var(--w)}}
/* Tour & Travel Section */
    #tour .tour-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:26px;margin-top:20px}
    #tour .tour-card{background:rgba(0,0,0,0.35);backdrop-filter:blur(10px);border-radius:20px;padding:20px;box-shadow:0 12px 28px rgba(0,0,0,.35);animation:floatIn 1s ease both}
    #tour .tour-title{color:#8ab4ff;font-weight:600;margin-bottom:10px}

    .tour-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:10px}
    .tour-gallery img{width:100%;height:130px;object-fit:cover;border-radius:12px;transition:transform .5s ease}
    .tour-gallery img:hover{transform:scale(1.12)}

    .tour-roadmap{margin-top:12px;display:grid;gap:12px}
    .tour-stop{display:grid;grid-template-columns:28px 1fr;gap:12px;align-items:flex-start;background:rgba(138,180,255,.08);border:1px solid rgba(138,180,255,.25);border-radius:14px;padding:12px;animation:pulseGlow 3s ease-in-out infinite}
    .tour-dot{width:14px;height:14px;border-radius:50%;background:#8ab4ff;box-shadow:0 0 12px rgba(138,180,255,.8);margin-top:4px}
    .tour-stop h4{font-size:.95rem;color:#8ab4ff}
    .tour-stop p{font-size:.82rem;opacity:.9}

    .tour-infogrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:14px;margin-top:12px}
    .tour-info{background:rgba(138,180,255,.08);border:1px solid rgba(138,180,255,.28);border-radius:16px;padding:14px;text-align:center;animation:weatherFloat 3.5s ease-in-out infinite}
    .tour-info i{font-size:22px;color:#8ab4ff;margin-bottom:6px}
    .tour-info h4{font-size:.85rem;color:#8ab4ff}
    .tour-info span{font-size:.78rem;opacity:.9}

    @media(max-width:900px){#tour .tour-grid{grid-template-columns:1fr}}

    /* Awards Section */
    #awards .award-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:18px}
    .award-card{background:rgba(0,0,0,0.35);backdrop-filter:blur(10px);border-radius:18px;padding:18px;text-align:center;box-shadow:0 12px 28px rgba(0,0,0,.35);position:relative;overflow:hidden;animation:awardFloat 3.8s ease-in-out infinite}
    .award-card::after{content:"";position:absolute;inset:-2px;border-radius:18px;background:linear-gradient(120deg,transparent,rgba(138,180,255,.35),transparent);opacity:.6;animation:shine 3.5s linear infinite}
    .award-icon{font-size:34px;color:#8ab4ff;margin-bottom:8px;filter:drop-shadow(0 0 8px rgba(138,180,255,.6))}
    .award-title{color:#8ab4ff;font-weight:600;font-size:.95rem;margin-bottom:6px}
    .award-desc{font-size:.8rem;opacity:.9;margin-bottom:10px}
    .award-meta{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:12px}
    .award-badge{font-size:.7rem;padding:4px 10px;border-radius:999px;background:rgba(138,180,255,.15);border:1px solid rgba(138,180,255,.35)}
    .award-btn{display:inline-block;margin-top:4px;padding:7px 14px;border-radius:999px;border:1px solid rgba(138,180,255,.6);color:#cfe1ff;text-decoration:none;font-size:.78rem;transition:.3s}
    .award-btn:hover{background:rgba(138,180,255,.15)}

    .award-cta{margin-top:18px;text-align:center}
    .award-cta a{display:inline-block;margin:6px 8px;padding:10px 18px;border-radius:999px;border:1px solid rgba(138,180,255,.7);color:#fff;text-decoration:none;font-size:.85rem}

    @keyframes awardFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
    @keyframes shine{0%{transform:translateX(-60%)}100%{transform:translateX(60%)}}

    /* Registration Fee Table */
.fee-wrapper{margin-top:18px}
.fee-table-wrap{overflow-x:auto;background:rgba(0,0,0,.35);backdrop-filter:blur(10px);border-radius:18px;box-shadow:0 12px 28px rgba(0,0,0,.35)}
.fee-table{width:100%;border-collapse:separate;border-spacing:0;min-width:980px;color:#e9f1ff}
.fee-table th,.fee-table td{padding:12px 10px;text-align:center;border-right:1px solid rgba(138,180,255,.25);border-bottom:1px solid rgba(138,180,255,.18)}
.fee-table th:last-child,.fee-table td:last-child{border-right:none}

.fee-table thead tr:first-child th{
  background:linear-gradient(135deg,#1b3b6f,#255aa6);
  color:#fff;font-weight:600
}
.fee-table thead tr:nth-child(2) th{
  background:rgba(138,180,255,.15);
  color:#cfe1ff;font-weight:500
}

.fee-table tbody tr td:first-child{
  text-align:left;font-weight:500;color:#8ab4ff
}

/* column color accents */
.fee-table tbody td:nth-child(2),.fee-table tbody td:nth-child(3){background:rgba(120,170,255,.10)}
.fee-table tbody td:nth-child(4),.fee-table tbody td:nth-child(5){background:rgba(255,200,90,.18)}
.fee-table tbody td:nth-child(6),.fee-table tbody td:nth-child(7){background:rgba(150,220,140,.18)}
.fee-table tbody td:nth-child(8),.fee-table tbody td:nth-child(9){background:rgba(200,210,230,.15)}

.fee-table tbody tr:hover td{background:rgba(138,180,255,.12)}


@media(max-width:768px){
  .fee-table th,.fee-table td{font-size:.75rem;padding:10px 8px}
}

/* Contact Section */
.contact-wrap{margin-top:22px;display:grid;grid-template-columns:1fr 1.2fr;gap:22px}

.contact-info{
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  animation:floatIn 1s ease both
}

.contact-info h3{color:#8ab4ff;margin-bottom:10px}
.contact-info p{font-size:.85rem;opacity:.9;margin:6px 0}
.contact-info i{color:#8ab4ff;margin-right:6px}

.contact-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.contact-tags span{
  font-size:.7rem;padding:4px 10px;border-radius:999px;
  background:rgba(138,180,255,.15);
  border:1px solid rgba(138,180,255,.35)
}

.contact-form{
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  animation:floatIn 1s ease both
}

.contact-form input,
.contact-form textarea{
  width:100%;background:rgba(138,180,255,.08);
  border:1px solid rgba(138,180,255,.28);
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:12px;
  color:#fff;font-size:.8rem;outline:none
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{color:#cfe1ff;opacity:.6}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}

.contact-btn{
  display:inline-block;padding:10px 22px;border-radius:999px;
  border:1px solid rgba(138,180,255,.7);
  background:linear-gradient(135deg,#1b3b6f,#255aa6);
  color:#fff;font-size:.8rem;cursor:pointer;transition:.3s
}

.contact-btn:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(138,180,255,.35)}

@media(max-width:900px){
  .contact-wrap{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}
.about_border {
     border: #ddd dashed 1px;
     padding: 40px 40px;
}
.about_border form lebel{
    font-size: 1rem;
}
.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
}