        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }
        .html{
        scroll-behavior: smooth;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
        }

        @media (max-width:768px)

    .card {
        width: 100%;
    }


/* head */

        header {
            background-color: #007bff;
            color: white;
            padding: 20px 0;
            text-align: center;
        }

        /* nav bar */

        nav {
            flex-direction: column;
            background-color: #0056b3;
            padding: 10px;
            text-align: center;
            position: sticky;
            list-style: none;
            justify-content: center;
            gap: 30px;
            top: 0;
            z-index:999 ;

        }
        

        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }


/* home */

        .hero {
            background-color: #e3f2fd;
            padding: 50px 20px;
            text-align: center;
            display: block;
            
            
        }

        .hero h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .hero button {
            padding: 10px 25px;
            font-size: 16px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }
        .FRONT{
            text-align: center;
        }

/* courses */

        .courses-front {
    
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }


        .course {
            background-color: rgba(251, 247, 255, 0.541);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(8, 0, 0, 0.767);
            transition: 0.3s;
        }

        .course:hover {
            transform: translateY(-5px);
        }

        .course h3 {
            text-align: center;
            color: #007bff;
            margin-bottom: 10px;
        }
        .course p {
            text-align: center;
        }

        /* about */

  .about-us{
    background-color: #e3f2fd;
    text-align: center;
    width: 80%;
  padding: 10px;
  margin: 10%;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #000000;
  border-radius: 10px;
 }
        
 .img22{
    border:4px solid #666666cc
    ;
 }

 /* team */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(8, 0, 0, 0.767);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}
.h2-photos{
    text-align: center;

}
.team-img {
    
    width: 100%;
    height: 300px;
  object-fit: contain;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* contact */

.con{
    text-align: center;
    background-color: rgb(255, 255, 255);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            transition: 0.3s;
            


}

/* form */

.form11 {
  font-family: Arial, sans-serif;
  
  background-color: #ffffff;
}

.data{text-align: center;}

form {

  background-color: #ffffff;
  padding: 20px;
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(08,0,0,0.767);
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #000000;
  border-radius: 6px;
}

button {
  background-color: #007bff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}


/* gallery */


 .gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(8, 0, 0, 0.767);
  transition: transform 0.3s ease;
  object-fit: contain;
}

.gallery img:hover {
  transform: scale(1.05);
}

.gallery-h2{
    text-align: center;
    text-shadow: gray;
    margin: 2px;
}

/* footer */


      .footer {
            background-color: #000000;
            color: #ffffff;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }
    
        













