/*! Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 40px;

}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}




::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: var(--main-font-color);
  border-radius: 10px;
  border: 2px solid #1a1a2e;
}

::-webkit-scrollbar-thumb:hover {
  background: #7355b0;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  --background-color: radial-gradient(
    ellipse at center,
    #1a1a2e 0%,
    #0f0f0f 100%
  );
  --second-background-color: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  --main-font-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --p-color: rgba(255, 255, 255, 0.8);
  --h-color: white;
  --first-font: "Montserrat", sans-serif;
  --second-font: "Arvo", sans-serif;
  --third-font: "Open Sans", sans-serif;
  --first-background-color: #1d1d20;
}

.container {
  width: 80%;
  margin: auto;
}

h1,
h2,
h3 {
  background: var(--main-font-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body:has(#Home:target) nav a[href="#Home"],
body:has(#About:target) nav a[href="#About"],
body:has(#Gallery:target) nav a[href="#Gallery"],
body:has(#Contact:target) nav a[href="#Contact"] {
  color: white;
}

body:has(#Home:target) nav a[href="#Home"]::after,
body:has(#About:target) nav a[href="#About"]::after,
body:has(#Gallery:target) nav a[href="#Gallery"]::after,
body:has(#Contact:target) nav a[href="#Contact"]::after {
  transform: scaleX(1);
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 105%;
  height: 2px;
  background-color: #705dbb;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s;
}

nav ul li a {
  position: relative;
}





















/*todo Nav  */
nav {
  background: var(--second-background-color);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999999;
  padding: 20px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 5%;
  margin-right: 7px;
}

nav p {
  color: var(--h-color);
  font-size: 24px;
  font-weight: 600;
}

nav .Desktop-nav {
  display: flex;
}

nav .Desktop-nav li {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 500;
}

nav .Desktop-nav a {
  color: var(--p-color);
}

nav .nav-content i {
  color: white;
  display: none;
}

.Mobile-Nav {
  display: none;
}

@media screen and (max-width: 767px) {
  nav .container {
    width: 100%;
  }
  nav .Desktop-nav {
    display: none;
  }
  nav p {
    font-size: 20px;
  }
  .nav-logo img {
    width: 10%;
    margin-right: 7px;
  }
  nav .nav-content i {
    display: block;
    font-size: 22px;
  }
  .Mobile-Nav {
    position: absolute;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    transition: 0.3s all;
    padding-bottom: 10px;
  }
  nav .Mobile-Nav li {
    padding-block: 20px;
    font-size: 16px;
    font-weight: 500;
  }
  nav .Mobile-Nav a {
    color: var(--p-color);
  }
  nav:has(#menu-toggle:checked) .Mobile-Nav {
    display: flex;
  }
}















/** Head */
header {
  background: var(--background-color);
  backdrop-filter: blur(10px);
  height: 100vh;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  margin-top: 40px;
}

.header-image img {
  max-height: 100%;
  height: auto;
  width: auto;
}

.header-image img:nth-child(1) {
  position: absolute;
  left: -10%;
  top: 12%;
  z-index: 1;
  max-height: 70%;
  animation: float 4s infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 25px rgba(115, 85, 176, 0.35);
}

.header-image img:nth-child(2) {
  z-index: 2;
  max-height: 80vh;
  animation: float 4s infinite;
}

@keyframes float {
  0% {
    transform: translateY(-10px) rotate(-2deg);
  }
  50% {
    transform: translateY(10px) rotate(2deg);
  }
  100% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.header-text {
  width: 50%;
}

.header-content h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.header-content .landing-p {
  font-size: 25px;
  margin-bottom: 20px;
}

.h-icon-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.header-content p {
  color: #a2a2a8;
  margin-left: 10px;
}

.header-content i {
  color: #7355b0;
}

.header-btn {
  margin-top: 30px;
  display: inline-block;
}

.header-btn a {
  color: var(--h-color);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  background-color: #7355b0;
  padding: 13px 40px 13px 40px;
  transition: 0.3s all;
  display: inline-flex;
  margin-right: 10px;
}

.header-btn a:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

@media screen and (max-width: 1200px) {
  .header-content h1 {
    font-size: 70px;
  }
  .header-content {
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(-4%, -45%);
  }
  .header-image {
    display: none;
  }
  .header-text {
    width: 90%;
  }
  .h-icon-card {
    justify-content: center;
  }
  .special {
    position: relative;
    left: -3%;
  }
  .nav-logo img {
    width: 8%;
  }
}

@media screen and (max-width: 767px) {
  .header-content h1 {
    font-size: 40px;
  }
  .header-content .landing-p {
    font-size: 15px;
  }
  .header-content p {
    font-size: 15px;
  }
  .header-btn a {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .nav-logo img {
    width: 5%;
  }
  .header-content i {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .header-content h1 {
    font-size: 30px;
  }
  .nav-logo img {
    width: 10%;
  }
}






















/*^ About  */
#About {
  background: var(--second-background-color);
  overflow: hidden;
  padding-bottom: 40px;
}

#About .container {
  margin-top: 40px;
  padding-top: 40px;
}

.about-header {
  text-align: center;
}

.about-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 20px;
  color: var(--p-color);
  line-height: 1.8;
  max-width: 600px;
  margin: auto;
}

.about-content {
  margin-top: 50px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.left-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 350px;
  height: 450px;
  align-self: center;
  transition: 0.8s all ease;
  opacity: 0.8;
}

.left-box:hover {
  transform: translateY(-5%);
  opacity: 1;
}

.left-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--h-color);
  margin-bottom: 15px;
}

.left-box p {
  text-align: center;
  font-size: 16px;
  color: var(--p-color);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 300px;
}

.left-box img {
  max-width: 30%;
  box-shadow: 0 15px 35px rgba(22, 32, 77, 0.623);
  border-radius: 50px;
  margin-bottom: 30px;
  display: block;
  transition: all 0.3s;
}

.left-box img:hover {
  transform: translateY(-5%) scale(1.1);
}

.left-box-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

.left-box-badges a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  margin-right: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
}

.left-box-badges a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.right-box {
  width: 50%;
}

.right-box h4 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.3;
  color: var(--h-color);
}

.right-box p {
  font-size: 18px;
  color: var(--p-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

.advantages {
  display: flex;
  flex-direction: column;
}

.advantages-card {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  column-gap: 10px;
}

.advantages-card p {
  margin: 0;
}

.advantages-card i {
  width: 30px;
  height: 30px;
  background: linear-gradient(
    135deg,
    rgb(102, 126, 234) 0%,
    rgb(118, 75, 162) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: white;
  margin-top: 20px;
}

.about-btn a {
  color: white;
  font-weight: 600;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.about-btn i {
  transition: 0.3s all ease;
}

.about-btn:hover i {
  transform: translateX(4px);
}

.about-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-footer-card {
  width: 25%;
  text-align: center;
}

.about-footer-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-footer-card p {
  font-size: 14px;
  color: var(--p-color);
}





@media screen and (max-width:1023px) {
    .about-content {
    flex-direction: column;
    row-gap: 50px;
  }
  .left-box img{
    width: 20%;
  }


  .left-box {
    width: 70%;
  }
  .right-box{
    width: 100%;
  }
  .about-footer{
    row-gap: 15px;
  }
  .about-footer-card{
    width: 50%;
  }
}







@media screen and (max-width: 767px) {
  #About .container {
    width: 90%;
  }
  .about-content {
    flex-direction: column;
    row-gap: 50px;
  }
  .left-box {
    width: 100%;
  }
  .right-box {
    width: 100%;
    text-align: center;
  }
  .advantages-card p {
    text-align: start;
  }
  .about-header h2 {
    font-size: 40px;
  }
  .about-header p {
    font-size: 18px;
  }
  .about-footer {
    flex-direction: column;
    row-gap: 40px;
  }
  .about-footer-card {
    width: 100%;
  }
}

















/*! Gallery */

#Gallery{
  background: linear-gradient(135deg, #161627 0%, #1e1829 100%);
}


.container-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2"
    "Card-3 Card-3 Card-3 Card-4 Card-4 Card-4 Card-5 Card-5 Card-5 Card-8 Card-8 Card-8"
    "Card-6 Card-6 Card-6 Card-7 Card-7 Card-7 Card-7 Card-7 Card-7 Card-8 Card-8 Card-8"
    "Card-9 Card-9 Card-9 Card-10 Card-10 Card-10 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11";
  background: var(--background-color);
}

/**  Card 1  **/
.Card-1 {
  grid-area: Card-1;
  background: #1d1d20;
}

.Card-1-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.Card-1-text {
  width: 35%;
}

.Card-1-text p {
  margin-bottom: 12px;
  line-height: 30px;
}

.Card-1-text p:nth-child(1) {
  color: var(--p-color);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--first-font);
  letter-spacing: 2px;
}

.Card-1-text p:nth-child(2) {
  font-family: var(--second-font);
  color: var(--h-color);
  font-size: 22px;
  font-weight: 400;
}

.Card-1-text p:nth-child(3) {
  font-family: var(--third-font);
  color: var(--p-color);
  font-size: 14px;
  font-weight: 400;
}

.Card-1 picture {
  width: 50%;
  margin-top: 20px;
}

.Card-1 img {
  margin-top: 117px;
  width: 80%;
  display: block;
}

/*todo Card 2  */
.Card-2 {
  grid-area: Card-2;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Card-2-content {
  text-align: center;
  width: 70%;
}

.Card-2-content p {
  font-family: var(--first-font);
  color: var(--p-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.Card-2-content h1 {
  font-family: var(--second-font);
  color: var(--h-color);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.Card-2-content a {
  font-family: var(--third-font);
  color: white;
  font-size: 14px;
  font-weight: 400;
}

/*^ Card 3 */
.Card-3 {
  grid-area: Card-3;
  background: #2a223a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.Card-3 h2 {
  text-align: center;
  font-family: var(--first-font);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.Card-3 a {
  color: #667eea;
  font-family: var(--third-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.Card-3 picture {
  width: 100%;
}

.Card-3 img {
  width: 100%;
  display: block;
}

/*? Card 4 */
.Card-4 {
  grid-area: Card-4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #1a1a2e;
}

.Card-4-content {
  text-align: center;
  margin-bottom: 30px;
  padding-inline: 20px;
}

.Card-4 picture {
  width: 130%;
  position: relative;
  transform: translateX(-30%);
}

.Card-4 img {
  width: 100%;
  display: block;
}

.Card-4 p {
  color: var(--p-color);
  font-family: var(--first-font);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.Card-4 h3 {
  text-align: center;
  color: white;
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 400;
}

/*&  Card 5  */
.Card-5 {
  grid-area: Card-5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #0f0f0f;
}

.Card-5-content {
  padding-inline: 40px;
}

.Card-5 p {
  font-family: var(--third-font);
  color: white;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 26px;
}

.Card-5 a {
  color: #667eea;
  font-family: var(--third-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}

/*~ Card 6 */
.Card-6 {
  grid-area: Card-6;
  background: #1d1d20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Card-6 picture {
  width: 70%;
  position: relative;
  left: -7%;
}

.Card-6-Content {
  width: 50%;
  text-align: center;
}

.Card-6 img {
  width: 100%;
}

.Card-6 h3 {
  color: var(--h-color);
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
}

.Card-6 a {
  color: #7355b0;
  font-family: var(--third-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

/** Card 7 */
.Card-7 {
  grid-area: Card-7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  row-gap: 40px;
  background-image: linear-gradient(135deg, #141422 0%, #1a1a2e 100%);
  position: relative;
}

.Card-7 img {
  margin-top: 20px;
  display: block;
  width: 90%;
  position: relative;
  left: -7%;
}

.Card-7 h3 {
  color: #ffffff;
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 700;
}

.Card-7 span {
  position: absolute;
  top: 7%;
  left: 4%;
  background-color: #7355b0;
  color: #ffffff;
  font-size: 8px;
  font-family: var(--third-font);
  font-weight: 700;
  padding-inline: 10px;
  padding-block: 5px;
  border-radius: 5px;
  letter-spacing: 2px;
}

/*? Card 8 */
.Card-8 {
  grid-area: Card-8;
  background: linear-gradient(135deg, #292444 0%, #3a2e5f 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.Card-8-Circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  background: rgba(115, 85, 176, 0.2);
  border-radius: 50%;
  padding: 20px;
}

.Card-Circle-Icon {
  background-color: #8f76bc;
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 5px 8px;
  border-radius: 50px;
}

.Card-Circle-Icon span {
  font-family: var(--third-font);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.Card-Circle-Icon i {
  font-size: 12px;
}

.Card-8 picture {
  width: 80%;
}

.Card-8 img {
  width: 100%;
}

.Card-8 .meet {
  color: #ffffff;
  font-family: var(--first-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.Card-8-half-Content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 40px;
  padding: 20px;
  position: relative;
  top: -4%;
}

.Card-8-half-Content h3 {
  color: #ffffff;
  font-family: var(--second-font);
  font-size: 32px;
  font-weight: 700;
}

.Card-8-half-Content p {
  color: #ffffff;
  font-family: var(--third-font);
  font-size: 14px;
  font-weight: 400;
}

.Card-8-half-Content a {
  margin-top: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-family: var(--third-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

/*todo Card-9  */
.Card-9 {
  grid-area: Card-9;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Card-9-Circle {
  display: flex;
  flex-direction: column;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  padding-inline: 10px;
  row-gap: 4px;
}

.Card-9 picture {
  width: 20%;
  display: block;
}

.Card-9 img {
  width: 100%;
}

.Card-9 p {
  text-align: center;
  color: white;
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 400;
}

/* ? Card 10*/
.Card-10 {
  grid-area: Card-10;
  background: #1d1d20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
}

.Card-10 h3 {
  color: var(--h-color);
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.Card-10 span {
  font-family: var(--third-font);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 8px;
  border-radius: 6px;
  background-color: #7355b0;
}

/*! Card 11 */
.Card-11 {
  grid-area: Card-11;
  background: #0f0f0f;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.Card-11 picture {
  width: 40%;
  position: relative;
  left: -7%;
}

.Card-11 img {
  width: 100%;
}

.Card-11 h3 {
  color: #ffffff;
  font-family: var(--second-font);
  font-size: 22px;
  font-weight: 400;
  width: 35%;
  line-height: 30px;
  margin-right: 40px;
}

@media screen and (max-width: 1023px) {
  .container-cards {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 0.6fr repeat(3, 1fr) 0.8fr 1fr 0.3fr 0.6fr;
    grid-template-areas:
      "Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2 Card-2"
      "Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1 Card-1"
      "Card-3 Card-3 Card-3 Card-3 Card-3 Card-3 Card-6 Card-6 Card-6 Card-6 Card-6 Card-6"
      "Card-4 Card-4 Card-4 Card-4 Card-4 Card-4 Card-5 Card-5 Card-5 Card-5 Card-5 Card-5"
      "Card-9 Card-9 Card-9 Card-9 Card-9 Card-9 Card-8 Card-8 Card-8 Card-8 Card-8 Card-8"
      "Card-7 Card-7 Card-7 Card-7 Card-7 Card-7 Card-8 Card-8 Card-8 Card-8 Card-8 Card-8"
      "Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10 Card-10"
      "Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11 Card-11";
  }
  .Card-2-content h1 {
    font-size: 35px;
  }
  .Card-1 picture {
    width: 48%;
  }
  .Card-8 {
    padding-bottom: 30px;
  }
  .Card-8-Circle {
    margin-top: 20px;
  }
  .Card-8-half-Content {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .container-cards {
    grid-template-columns: 1fr;
    grid-template-rows: 
    minmax(300px, auto) minmax(350px, auto) minmax(300px,auto) minmax(295px, auto)
    minmax(350px, auto) minmax(300px, auto) minmax(250px,auto) minmax(300px, auto)
    minmax(300px, auto) minmax(300px, auto) minmax(150px,auto) minmax(300px, auto);
    grid-template-areas:
      "Card-2"
      "Card-1"
      "Card-3"
      "Card-6"
      "Card-4"
      "Card-5"
      "Card-9"
      "Card-7"
      "Card-8"
      "Card-8"
      "Card-10"
      "Card-11";
  }
  .Card-1-content {
    flex-direction: column;
  }
  .Card-1-text {
    width: 80%;
    margin-top: 20px;
  }
  .Card-1 picture {
    width: 70%;
  }
  .Card-1 img {
    position: relative;
    left: -6%;
    margin-top: 0;
    width: 100%;
  }
  .Card-2 {
    padding-bottom: 40px;
    padding-top: 25px;
  }
  .Card-2-content {
    width: 100%;
  }
  .Card-2-content h1 {
    font-size: 36px;
  }
  .Card-2-content p {
    margin-top: 25px;
  }
  .Card-6-Content {
    width: 55%;
  }
  .Card-4-content {
    text-align: start;
  }
  .Card-4 h3 {
    text-align: start;
  }
  .Card-4 picture {
    width: 155%;
  }
  .Card-5-content {
    padding-inline: 20px;
  }
  .Card-9-Circle {
    width: 275px;
    height: 275px;
  }
  .Card-11 {
    flex-direction: column;
    justify-content: flex-start;
  }
  .Card-11 h3 {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .Card-11 picture {
    width: 50%;
    left: -10%;
  }
}
















/*? Contact */
#Contact {
  background: var(--background-color);
  padding-bottom: 40px;
  overflow: hidden;
}

#Contact .container {
  margin-top: 60px;
  padding-top: 60px;
}

.contact-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-head h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-head p {
  font-size: 20px;
  color: var(--p-color);
}

.contact-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-content .left-box-contact {
  width: 45%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.contact-content h4 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.contact-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.contact-card strong {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 5px;
}

.contact-card i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-card a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.follow {
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.social i {
  color: white;
  font-size: 20px;
}

.right-box-contact {
  width: 45%;
}

.form-card {
  margin-bottom: 25px;
}

.right-box-contact form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.right-box-contact label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.right-box-contact input,
.right-box-contact textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.right-box-contact textarea {
  resize: vertical;
}

.right-box-contact input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
}
.right-box-contact textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
}

.right-box-contact button {
  background: var(--main-font-color);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.right-box-contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

@media screen and (max-width: 1023px) {
  #Contact .container {
    margin-top: 0;
    width: 90%;
  }
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  .contact-content .left-box-contact {
    width: 100%;
  }
  .right-box-contact {
    width: 100%;
  }
  .right-box-contact textarea {
    min-height: 150px;
  }
}












/*^ Footer */
footer{
  background: linear-gradient(135deg, #161627 0%, #1e1829 100%);
  backdrop-filter: blur(10px);
}

footer .container{
  padding-block: 30px;
}


footer .top-footer{
  display: flex;
  flex-wrap: wrap;
} 


footer .footer-card{
  width: 20%;
}

footer .footer-card p{
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 10px;
}

footer .footer-card a li{
  margin-bottom: 7px;
}

footer .footer-card a {
  color: rgba(255, 255, 255, 0.555);
  transition: all 0.3s ease;
}


footer .footer-card a:hover{
  color: white;
}

footer .top-footer img{
  width: 30%;
  opacity: 0.9;
  transition: 0.3s all ease;
}


footer .top-footer img:hover{
  opacity: 1;
  transform: scale(1.1);
}





.bottom-footer{
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-footer p{
  color: rgba(255, 255, 255, 0.555);
}


.privacy a{
  display: inline-flex;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.555);
  transition: 0.3s all ease;
}


.privacy a:hover{
  color: white;
}


.bottom-social{
  display: flex;
  gap: 15px;
}

.bottom-social a{
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bottom-social a:hover{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.bottom-social i{
  color: white;
  font-size: 16px;
}

.bottom-cards span{
  color: rgb(212, 212, 212);
  font-weight: 700;
}



@media screen and (max-width:1023px) {
  footer .top-footer{
    gap: 10px;
  }
  footer .footer-card{
    width: calc(calc(100% - 40px) / 5);
  }
}


@media screen and (max-width:767px) {
  footer .container{
    width: 90%;
  }
  footer .top-footer{
    row-gap: 15px;
    column-gap: 0;
  }
  footer .footer-card{
    width: 50%;
  }
  footer .footer-image{
    width: 100%;
  }
  footer .top-footer img{
    width: 17%;
  }
  .bottom-footer{
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
  .bottom-social{
    order: -2;
  }
  .privacy{
    order: -1;
  }
}