/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    
}


body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.hero-section {
  background: url('images/WhatsApp\ Image\ 2024-10-08\ at\ 16.33.42_97503b3f.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
}

.logo-box {
  display: inline-block;
  border: 2px solid #ff4a4a;
  padding: 10px 20px;
  margin: 20px 0;
}

.logo-text {
  font-size: 36px;
  color: #ff4a4a;
  font-weight: bold;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0;
}

p {
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
}



h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1c1c1c;
  color: #ffffff;
}

.services-section {
  text-align: center;
  padding: 50px 20px;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service {
  background-color: #282828;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #b3b3b3;
  margin-bottom: 0;
}

a {
  color: #ff4a4a;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffffff;
}

.about-container {
  display: flex;
  flex-direction: column; /* Change to column layout on smaller screens */
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  background-color: #000;
  color: #fff;
  gap: 20px;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row; /* Row layout for larger screens */
    justify-content: space-between;
    height:50vh;
  }
}

.about-info {
  width: 100%;
  padding-right: 20px;
}

.about-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-info h3 {
  font-size: 18px;
  color: #ff4a5a;
  margin-bottom: 15px;
}

.about-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.skills {
  width: 100%;
  padding-left: 20px;
}

.skill {
  margin-bottom: 20px;
}

.skill p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 16px;
}

.skill-bar {
  width: 100%;
  background-color: #333;
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress {
  height: 8px;
  background-color: #ff4a5a;
  border-radius: 5px;
}


/* .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    width: 100%;
    background-color: #000;
    color: #fff;
    height: 100vh;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  
  .about-info {
    flex: 1;
    padding-right: 20px;
  }
  
  .about-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .about-info h3 {
    font-size: 18px;
    color: #ff4a5a;
    margin-bottom: 15px;
  }
  
  .about-info p {
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .skills {
    flex: 1;
    padding-left: 20px;
  }
  
  .skill {
    margin-bottom: 20px;
  }
  
  .skill p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 16px;
  }
  
  .skill-bar {
    width: 100%;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .skill-progress {
    height: 8px;
    background-color: #ff4a5a;
    border-radius: 5px;
  } */
  

.portfolio-thumb {
    position: relative;
    overflow: hidden;
    margin: 15px;
    border-radius: 10px;
}

.portfolio-thumb img {
    width: 100%;
    transition: transform 0.3s ease;
}

.portfolio-thumb:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-thumb:hover .portfolio-overlay {
    opacity: 1;
}

.contact-container {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  padding: 20px;
  background-color: #000;
  border-radius: 8px;
  width: 100%;
  gap: 20px;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .contact-container {
      flex-direction: row; 
  }
}

.contact-info {
  flex: 1;
  padding: 20px;
  color: #fff;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info i {
  color: #ff4a5a;
  margin-right: 10px;
}

.contact-form {
  flex: 1;
  padding: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: transparent;
  border: 1px solid #ccc;
  color: #fff;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #ff4a5a;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #ff3a4a;
}


/* .contact-container {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #000;
    border-radius: 8px;
    width: 100%;
  }
  
  .contact-info {
    flex: 1;
    padding: 20px;
  }
  
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .contact-info i {
    color: #ff4a5a;
    margin-right: 10px;
  }
  
  .contact-form {
    flex: 1;
    padding: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #fff;
  }
  
  .contact-form textarea {
    height: 100px;
    resize: none;
  }
  
  .contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #ff4a5a;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
  }
  
  .contact-form button:hover {
    background-color: #ff3a4a;
  } */

  .divider {
    width: 50%;
    margin: 10px auto;
    border-top: 1px solid #fff;
    opacity: 0.5;
}

footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-content p {
  margin: 0;
  padding: 0;
  
}

.footer-content a {
  color: #428bca;
  text-decoration: none;
}

.footer-content a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #428bca;
}

.social-icons i {
  font-size: 18px;
}
