@import url("https://fonts.googleapis.com/css2?family=Open+Sans");

* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #e8f5e1;
  justify-content: center;
  
}

.about-section{
    background-color: #fcf6f6;
    padding: 20px 20px 200px;
     
}

.navbar{
    background-color: #fff;
    display: flex;
    border-radius: 30px;
    align-items: center;
    justify-content: space-between;
    padding:  10 30px ;
    
}

.logo i{
    color: #0003e0;
}
.navbar a{
    text-decoration: none;
    font-size: 15px;
    
    font-weight: bold; 
    justify-content: space-between;
    color: #0003e0;
}

.nav-list a:hover {
  color: #c0392b;
  font: bold;
}

.allow{
    background-color: #0003e0;
    font-size: 20px;
  color: #fff;
  border: none;
  padding: 40 20px;
  width: 200px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.allow:hover{
     background-color: rgba(30, 30, 175, 0.933);
}

.allow:active{
 transform: scale(0.95);
  }   

  .cards-container {
  display: flex;
  justify-content: center;  
  align-items: flex-start;   
  gap: 30px;                 
  flex-wrap: wrap;           
  margin-top: 50px;
}

.design-card{
background-color:#efecec;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features{
     display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.features span{
    background: #d8e8dc;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  color: #1ea1aa;
  font-weight: 500;
  white-space: nowrap;
}

.content-class{
  text-align: center;  
}

.content-class h1{
     font-size: 45px;
  font-weight: bold;
  line-height: 1.3;
  color: #050404;
}

.content-class p{
  font-size: 15px;
  color: #050404;
  line-height: 1.6;  
}

.cont-btn{
    background-color: #1a1919;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.cont-btn:active{
    transform: scale(0.85);
}
.cont-btn:hover{
background-color: #696966;
}

.portfolio-card{
   background-color:#efecec;
   justify-content: flex-end;
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  align-content: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}


.cont-class{
 display: flex;
 justify-content: center;
 gap: 20px;
 flex-wrap:wrap ;
 margin-top: 40px;
}

.portfolio-card .cont-class{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.portfolio-card .cont-class img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.portfolio-card .code-image p {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}

.code-image img,
.carol-image img{
   width: 200px; 
   height: 200px;
   border-radius: 15px;
   object-fit: cover;
   display: block;
}

@media (max-width: 600px) {
  .portfolio-card .cont-class {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-card .cont-class img {
    width: 90%;
    height: auto;
  }
}


.mission {
  background-color: #03a9b6;
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.mission h2 {
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.5;
  font-weight: 500;
}

.brands {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
  opacity: 0.9;
}


.services {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.services h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #f6f6f6;
  border-radius: 15px;
  padding: 25px 30px 40px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card .icon {
  font-size: 25px;
  color: #03a9b6;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.service-card .number {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-weight: 600;
  color: #888;
}

.picture-section {
  padding: 60px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.head{
    font-weight: bold;
    font-size: 30px;
}
.picture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  flex: 1;
}


.picture-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.picture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.picture-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.portfolio-section {
  padding: 60px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}


.see-all {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  height: fit-content;
}
.see-all:active{
    transform: scale(0.85);
}

.see-all:hover {
  background: #111;
  color: #fff;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  flex: 1;
}


.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-content {
  padding: 18px 20px 25px;
  position: relative;
}

.card-content h4 {
  font-size: 16px;
  color: #111;
  font-weight: 600;
}

.card-content .year {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.tags {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags span {
  background: #e7f6f9;
  color: #03a9b6;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
}

.experience {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.experience-card {
  background: #f6f6f6;
  border-radius: 15px;
  padding: 25px 30px 40px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.experience-card h1{
font-weight: bold;
    font-size: 30px;
  color: #252525;
  line-height: 1.6; 
}

.call{
background: #fff;
  color: #222;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  height: fit-content;
}

.call:active{
    transform: scale(0.85);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.experience-card h4{
    font-weight: bold;
    font-size: 30px;
  color: #252525;
  line-height: 1.6; 
}

.experience-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.container{
  justify-content: center;
  align-items: center;
}
 .contact-container {
     background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 500px;
            width: 100%;
            margin: 0 auto;     
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.2;
        }
.contact-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e1e1;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-input::placeholder {
            color: #999;
        }

        .work-input {
            width: 100%;
            padding: 50px 60px;
            border: 2px solid #e1e1e1;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .work-input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .work-input::placeholder {
            color: #999;
        }
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Animation for form elements */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-title {
            animation: fadeInUp 0.6s ease;
        }

        .contact-subtitle {
            animation: fadeInUp 0.6s ease 0.1s both;
        }

        .form-group {
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        .submit-btn {
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        /* Responsive design */
        @media (max-width: 600px) {
            .contact-container {
                padding: 30px 25px;
            }
            
            .contact-title {
                font-size: 2rem;
            }
            
            .contact-subtitle {
                font-size: 1rem;
            }
        }