@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #f4f4f4;
}
.logo{
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img{
  width: 50px;
  height: 50px;
  
} 
.cta-button {
    background-color: #00d4ff;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    margin: 0px ;
    transition: background-color 0.3s ease;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(247, 241, 241 0.8);
    color: #0097a7;
}
.navbar:hover{
    background-color: rgb(247, 241, 241 0.8);
    box-shadow: 1px 1px 3px rgb(47, 47, 47);
    box-sizing: border-box;
    color: rgb(16, 15, 15);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: rgb(42, 39, 39);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #60A5FA;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1000;
    width: 70%;
    height: 100vh;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 10px 0;
    transition: 0.3s;
}
.mobile-nav h1 {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  margin: 10px 0;
  transition: 0.3s;
}
.hero-section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}
.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
  max-width: 600px;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #00d4ff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0ff;
}
section {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}
.section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}
.section p {

    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
  
}
/* General section styling */
.art-section {
  padding: 40px 20px;
  background-color: #f5faff;
  text-align: center;
}

.art-section h2 {
  color: #00d4ff;
  margin-bottom: 30px;
}

/* Art gallery grid */
.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual card */
.art-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.art-card:hover {
  transform: translateY(-8px);
}

/* Image with mask */
.image-mask {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
  filter: brightness(60%);
}

.art-card:hover img {
  filter: brightness(100%);
  transform: scale(1.03);
}

/* Text info */
.art-info {
  padding: 15px;
  text-align: left;
}

.art-info h3 {
  margin: 0;
  color: #00d4ff;
  font-size: 1.2em;
}

.art-info p {
  color: #333;
  margin-top: 5px;
}
.about-section {
  padding: 40px 20px;
  background-color: #f5faff;
  text-align: center;
}

.about-section h2 {
  color: #00d4ff;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-container {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #e4dede;
  line-height: 1.6;
}

#full-about.hidden {
  display: none;
}


.projects-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 30px;
  color: #00d4ff;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background: #f1faff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
  opacity: 0;
}

.project-card h3 {
  margin: 15px 10px 5px;
  color: #333;
}

.project-card p {
  margin: 0 10px 15px;
  font-size: 0.95rem;
  color: #555;
}

#read-more-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #00d4ff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#read-more-btn:hover {
  background-color: #009bc3;
}

.training-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
}

.training-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00d4ff;
}

.training-header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.training-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  color: #000;
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.4rem;
  padding: 15px 20px 0;
  color: #203a43;
}

.card p {
  padding: 10px 20px;
  font-size: 1rem;
  color: #333;
}

.card .btn {
  display: block;
  margin: 15px 20px 20px;
  background: #00d4ff;
  color: #000;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card .btn:hover {
  background: #0ff;
}

.map-section {
  padding: 60px 20px;
  background-color: #f0f4fa;
  text-align: center;
}

.map-section h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-section p {
  color: #333;
  margin-bottom: 30px;
}

.map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

.services-section {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: white;
  color: #203a43;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}




.footer {
    background: #0a0a23;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-logo h2 {
    margin-bottom: 5px;
    font-size: 24px;
    color: #00bcd4;
  }
  
  .footer-contact h3,
  .footer-social h3,
  .footer-newsletter h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #00bcd4;
  }
  
  .footer-contact p,
  .footer-logo p {
    margin: 6px 0;
    font-size: 14px;
  }
  
  .footer-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #00bcd4;
  }
  
  .footer-newsletter .newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .footer-newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    flex: 1;
  }
  
  .footer-newsletter button {
    padding: 10px 15px;
    background: #00bcd4;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
  
  .footer-newsletter button:hover {
    background: #0097a7;
  }
  
  .footer-bottom {
   
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
  }  


  .card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}


.card.animate {
  opacity: 1;
  transform: translateY(0);
}


.card:nth-child(odd).animate {
  transform: translateX(0);
  animation: slideInLeft 0.8s ease forwards;
}

.card:nth-child(even).animate {
  transform: translateX(0);
  animation: slideInRight 0.8s ease forwards;
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}


.service-card:nth-child(odd).animate {
  transform: translateX(0);
  animation: slideInLeft 0.8s ease forwards;
}

.service-card:nth-child(even).animate {
  transform: translateX(0);
  animation: slideInRight 0.8s ease forwards;
}


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
  background-color: #00d4ff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  opacity: 1;
}
