@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000000;
  font-family: 'Gabarito', sans-serif;
}

:root{
  --primary-color: #ffffff;
  --second-color: #749BC2;
  --background-color: #91C8E4;
  --third-color: #4682A9;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Gabarito', sans-serif;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

input, textarea{
  border-radius: 10px !important;
}

button{
  border-radius: 10px;
}

nav {
  position: absolute;
  width: 100%;
  display: flex;
  padding: 3rem 10rem;
  justify-content: space-between;
}

.container {
  height: 100vh;
  display: flex;
}

.container img {
  width: 100%;
  position: absolute;
  height: 110vh;
  object-fit: cover;
  background-repeat: no-repeat;
  z-index: -1;
}



.main-title {
  font-size: 6rem;
  margin: auto;
  font-weight: 900;
}




.content-images {
  display: flex;
  justify-content: space-around;
  /* background-image: url(./5488076.jpg); */
  z-index: 10;
  align-items: center;
  min-height: 60vh;
  text-align: center;

}

.text {
  padding: 1.5rem 10rem;
  /* Keep original padding for desktop */
  font-size: 1.9rem;
  /* Keep original font size for desktop */
}

/* Media Query for mobile responsiveness */
@media (max-width: 768px) {
  .text {
    padding: 1rem;
    /* Adjust padding for mobile */
    font-size: 1rem;
    /* Adjust font size for mobile */
  }
}


.kodfun-galier {
  background: #fff;
  display: flex;
  height: 20rem;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
  margin-top: 0px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  
}


.kodfun-galier>div {
  flex: 1;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
}

.kodfun-galier>div:hover {
  flex: 1.5;
}





html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  background-color: #f2f2f2;
}



h1 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #FFF;
  font-size: 2.3em;
}

em {
  color: #232027;
}

.wrapper {
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

div.gallery {
  margin-top: 30px;
  list-style-type: none;

}

div.gallery ul {
  list-style-type: none;
  margin-left: 35px;
}

/* animation */
div.gallery ul li,
div.gallery li img {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  list-style-type: none;

}

div.gallery ul li {
  position: relative;
  float: right;
  width: 130px;
  height: 130px;
  margin: 5px;
  padding: 5px;
  z-index: 0;
}


/* Your existing CSS styles */
/* Your existing CSS styles */

/* Animation with different transition properties for mobile */
@media (max-width: 768px) {
  /* Add or adjust the desired transition properties for mobile */
  div.gallery ul li,
  div.gallery li img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    list-style-type: none;
  }

  div.gallery ul li img:hover {
    width: 200px;
    height: 200px;
    margin-top: -130px;
    margin-left: -130px;
    top: 65%;
    left: 65%;
  }
}

/* Media Query for mobile responsiveness */
@media (max-width: 768px) {
  .gallery ul {
    text-align: center;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery ul li {
    float: none;
    display: inline-block;
    margin: 10px;
    text-align: center;
  }
  
  .gallery ul li img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Remove the animation on mobile */
  div.gallery ul li,
  div.gallery li img {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    box-shadow: none;
    border-radius: 0;
  }

  /* Adjust the hover styles on mobile */
  div.gallery ul li:hover {
    z-index: 0;
  }

  div.gallery ul li img:hover {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    top: 0;
    left: 0;
  }
}


/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.gallery ul li:hover {
  z-index: 5;
}

/* Image is position nicely under li */
div.gallery ul li img {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #dddddd;
  padding: 5px;
  width: 130px;
  height: 130px;
  background: #f0f0f0;
}

div.gallery ul li img:hover {
  width: 200px;
  height: 200px;
  margin-top: -130px;
  margin-left: -130px;
  top: 65%;
  left: 65%;
}

p.attribution {
  font-family: 'Consolas';
  color: #000;
  clear: both;
  text-align: center;
  line-height: 25px;
  padding-top: 30px;
}

p.attribution a {
  color: #4c8d7c;
}

/* Responsive hack */
@media only screen and (min-width: 499px) and (max-width: 1212px) {
  .wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 700px) {
  .wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  div.gallery ul {
    /* Adjust or reset your ul styles for mobile */
    list-style-type: disc; /* or your preferred style */
    margin: 0; /* You can adjust the margin as needed */
  }
}







*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}


body {
  background: #ffffff;
  color: #333;
  font-weight: normal;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
}

input:focus,
textarea:focus,
keygen:focus,
select:focus {
  outline: none;
}

::-moz-placeholder {
  color: #666;
  font-weight: 300;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #666;
  font-weight: 300;
}


/* Contact Form Styling */
.container2 {
  padding: 0 50px 70px;
}

@media screen {}

.textcenter {
  text-align: center;
}

.section1 {
  text-align: center;
  display: table;
  width: 100%;
}

.section1 .shtext {
  display: block;
  margin-top: 20px;
}

.section1 .seperator {
  border-bottom: 1px solid #a2a2a2;
  width: 35px;
  display: inline-block;
  margin: 20px;
}

.section1 h1 {
  font-size: 40px;
  color: #3586ff;
  font-weight: normal;
}

.section2 {
  width: 1200px;
  margin: 25px auto;
}

.section2 .col2 {
  width: 48.71%;
}

.section2 .col2.first {
  float: left;
}

.section2 .col2.last {
  float: right;
}

.left-form{
  padding: 40px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.section2 span.collig {
  color: #a2a2a2;
  margin-right: 10px;
  display: inline-block;
}

.section2 .sec2addr {
  display: block;
  line-height: 26px;
}

.section2 .sec2addr p:first-child {
  margin-bottom: 10px;
}

.section2 .sec2contactform input[type="text"],
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
  padding: 18px;
  border: 0;
  background: #EDEDED;
  margin: 7px 0;
}

.section2 .sec2contactform textarea {
  width: 100%;
  display: block;
  color: #666;
  resize: none;
}

.section2 .sec2contactform input[type="submit"] {
  padding: 15px 40px;
  color: #fff;
  border: 0;
  background: #3586ff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 7px 0;
  cursor: pointer;
}

.section2 .sec2contactform h3 {
  font-weight: normal;
  margin: 20px 0;
  margin-top: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 19px;
  color: #3586ff;
}

.map {
  width: 100%;
  height: 635px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media only screen and (max-width: 1266px) {
  .section2 {
    width: 100%;

  }
}

@media only screen and (max-width: 960px) {
  .container2 {
    padding: 0 30px 70px;
  }

  .section2 .col2 {
    width: 100%;
    display: block;
  }

  .section2 .col2.first {
    margin-bottom: 10px;
  }

    *,
    *:after,
    *:before {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
    }

    .clearfix:before,
    .clearfix:after {
      display: table;
      content: '';
    }

    .clearfix:after {
      clear: both;
    }
 

    input:focus,
    textarea:focus,
    keygen:focus,
    select:focus {
      outline: none;
    }

    ::-moz-placeholder {
      color: #666;
      font-weight: 300;
      opacity: 1;
    }

    ::-webkit-input-placeholder {
      color: #666;
      font-weight: 300;
    }


    /* Contact Form Styling */
    .container1 {
      padding: 0 50px 70px;
    }

    .textcenter {
      text-align: center;
    }

    .section1 {
      text-align: center;
      display: table;
      width: 100%;
    }

    .section1 .shtext {
      display: block;
      margin-top: 20px;
    }

    .section1 .seperator {
      border-bottom: 1px solid #a2a2a2;
      width: 35px;
      display: inline-block;
      margin: 20px;
    }

    .section1 h1 {
      font-size: 40px;
      color: #3586ff;
      font-weight: normal;
    }

    .section2 {
      width: 1200px;
      margin: 25px auto;
    }

    .section2 .col2 {
      width: 48.71%;
    }

    .section2 .col2.first {
      float: left;
    }

    .section2 .col2.last {
      float: right;
    }

    .section2 span.collig {
      color: #a2a2a2;
      margin-right: 10px;
      display: inline-block;
    }

    .section2 .sec2addr {
      display: block;
      line-height: 26px;
    }

    .section2 .sec2addr p:first-child {
      margin-bottom: 10px;
    }

    .section2 .sec2contactform input[type="text"],
    .section2 .sec2contactform input[type="email"],
    .section2 .sec2contactform textarea {
      padding: 18px;
      border: 0;
      background: #EDEDED;
      margin: 7px 0;
    }

    .section2 .sec2contactform textarea {
      width: 100%;
      display: block;
      color: #666;
      resize: none;
    }

    .section2 .sec2contactform input[type="submit"] {
      padding: 15px 40px;
      color: #fff;
      border: 0;
      background: #3586ff;
      font-size: 16px;
      text-transform: uppercase;
      margin: 7px 0;
      cursor: pointer;
    }

    .section2 .sec2contactform h3 {
      font-weight: normal;
      margin: 20px 0;
      margin-top: 30px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 19px;
      color: #3586ff;
    }

    /* @media querries */

    @media only screen and (max-width: 1266px) {
      .section2 {
        width: 100%;
      }
    }

    @media only screen and (max-width: 960px) {
      .container1 {
        padding: 0 30px 70px;
      }

      .section2 .col2 {
        width: 100%;
        display: block;
      }

      .section2 .col2.first {
        margin-bottom: 10px;
      }

      body .sec2map {
        height: 250px !important;
      }
    }

    @media only screen and (max-width: 768px) {
      .section2 .sec2addr {
        font-size: 14px;

      }

      .section2 .sec2contactform h3 {
        font-size: 16px;
      }

      .section2 .sec2contactform input[type="text"],
      .section2 .sec2contactform input[type="email"],
      .section2 .sec2contactform textarea {
        padding: 10px;
        margin: 3px 0;
      }

      .section2 .sec2contactform input[type="submit"] {
        padding: 10px 30px;
        font-size: 14px;
      }
    }

    @media only screen and (max-width: 420px) {
      .section1 h1 {
        font-size: 28px;
      }
    
  }

  body .sec2map {
    height: 250px !important;
  }
}

@media only screen and (max-width: 768px) {
  .section2 .sec2addr {
    font-size: 14px;
  }

  .section2 .sec2contactform h3 {
    font-size: 16px;
  }

  .section2 .sec2contactform input[type="text"],
  .section2 .sec2contactform input[type="email"],
  .section2 .sec2contactform textarea {
    padding: 10px;
    margin: 3px 0;
  }

  .section2 .sec2contactform input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 420px) {
  .section1 h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 768px) {
  .main-title{
    font-size: 3em;
  }

  .kodfun-galier {
    width: 100%;
    gap: 1rem;
    height: 50em;
    flex-direction: column;
    margin-top: 80px;  
    list-style-type: none;

  }


  .kodfun-galier>div:hover {
    flex: 2;
  }

  .neumorphic-component .icon img {
    width: 150px;
  }
  
  .text {
    font-size: 23px;
    
  }

  ul{

  }

}

/* Default styles for the header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba( 255, 255, 255, 0.45 );
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  backdrop-filter: blur( 4px );
}

/* Styles for the header when it's transparent */
header.appear::after {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur( 0 );
}

/* Logo styles */
header .logo img {
  width: 50px;
}

/* Default styles for the navigation ul */
header ul {
  display: flex;
  list-style: none;
  display: flex;
  padding: 20px 40px;
  background: transparent;
  border-radius: 10px;
}

/* Styles for the navigation ul when the header is transparent */
header.appear ul {
  background: rgba(30, 28, 28, 0.503);
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

/* Styles for navigation list items */
header ul li {
  margin-left: 30px;
  color: var(--primary-color);
}

/* Styles for the first navigation list item */
header ul li:first-child {
  margin-left: 0;
}

/* Default styles for anchor elements in the navigation */
header ul li a {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3em;
color: black;
font-weight: bolder;
}


/* Styles for anchor elements when the header is transparent */
header.appear ul li a {
  color: white; /* Color when the header is transparent */
  transition: all .2s ease;
    -moz-transition:    all .2s ease;
    -ms-transition:     all .2s ease;
    -o-transition:      all .2s ease;
    -webkit-transition: all .2s ease;
}

/* Hover styles for anchor elements */
header ul li a:hover {
  color: var(--background-color); /* Color on hover (change this to your desired color) */
}

/* Add this to your CSS */
.appear {
  background: transparent;
}


* {
  box-sizing: border-box;
}

.content {
  width: 100%;
  background: var(--primary-color);
  min-height: 100vh;
  z-index: 2;
  position: absolute;
  padding-bottom: 60px;
}

/* Adjust these styles for better mobile responsiveness */
@media (max-width: 768px) {
  .content {
    position: relative;
    min-height: auto;
  }
}

.cards {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 100px;
}

.card {
  position: relative;
  margin-top: 30px;
  display: flex;
  width: 100%;
}

.card__inner {
  will-change: transform;
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
  transform-origin: center top;
}

.card__image-container {
  flex: 1;
  width: 100%; /* Ensure full-width images on mobile */
  display: flex;
  align-items: center;
}

.card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9; /* Maintain 16:9 aspect ratio for images */
  object-fit: cover;
}

.card__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #16263a;
}

.card__description {
  line-height: 1.4;
  font-size: 18px;
  color: #16263a;
}

/* Adjust the layout for the first card to be wider */
.cards .card:first-child {
  grid-column: span 2; /* Span two columns */
}


/* Remove display: none; to make kodfun-galier visible on mobile */
@media (max-width: 800px) {
  .cards {
   padding: 10px; /* Add margin to the cards */
  }

}




@media (max-width: 800px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__image {
    aspect-ratio: auto; /* Remove aspect-ratio for flexible sizing */
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }
}




@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");



.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.4rem;
  color: #000000;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
  border-radius: 12px;
  padding: 10px;
  background-color: #d7e7ff;
  margin-bottom: 5px;
  width: 120px;
  text-align: center;

}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

.shortAnime{
  transition: all .2s ease;
    -moz-transition:    all .2s ease;
    -ms-transition:     all .2s ease;
    -o-transition:      all .2s ease;
    -webkit-transition: all .2s ease;
}


