/* Start Variables*/
:root {
  --main-color: #10cab7;
}
/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  margin: 0;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.header{
  width: 100%;
  padding:15px;
  background-color: white;
}

.header .container{
  display:flex;
  justify-content:space-between;
}

.header .links .icons{
    display: flex;
    flex-wrap: wrap;
    width: 30px;
    justify-content: end;

}

.header .links .icons span{
  background-color: black;
  margin-bottom: 5px;
  width: 100%;
  height: 2px;
}

.header .links ul li a:hover {
  transform: translateX(10px);
}

.header .links .icons span:nth-child(2){
  width: 60%;
  transition-duration: 0.3s;
}

.header .links:hover .icons span:nth-child(2){
  width: 100%;
}

.header .links ul{
  display:none;
}


.logo{
    width: 50px;
}

.hero{
  background-image: url("images/background.png");
  background-size: cover;
  background-position:center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
}

.main-heading{
  font-size: 50px;
  margin: 0;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.paragraph-text{
  font-size: 19px;
  line-height: 1.8;
  text-align: center;
  width: 350px;
}

.features{
  background-color: #f6f6f6;
  padding: 60px 0;
}
.features .container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.features .feature {
  text-align: center;
  padding: 40px;
  margin: auto;
  max-width: 320px;
}

.features .container .feature h3{
  margin: 30px 0;
  font-weight: 800;
  text-align: center;

}


.features .container p{
  line-height: 1.8;
  font-size: 18px;
  color: rgb(115, 115, 115);
   text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
}


.features .feature .feature-icon{
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.service-section {
  padding: 60px 60px 0 0;
}

.service-section .service-heading {
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}

.service-section .service-subtitle {
  text-align: center;
  margin: -30px 0 0;
  font-size: 18px;
  color: #797979;
  line-height: 1.8;
}

.service-section .services-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 100px;
}

.service-section .services-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.service-section .sections {
  display: flex;
  gap: 20px;
}

.service-section .sections h3 {
  margin: 0 0 10px;
  font-weight: 800;
}

.service-section .sections p {
  color: #777;
  line-height: 1.7;
}

.service-section .sections .feature-icon {
  font-size: 40px;
  color: var(--main-color);
}

.service-section .service-image {
  position: relative;
  text-align: center;
}

.service-section .service-image::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -40px;
  width: 100px;
  height: calc(100% + 80px);
  background-color: #2c4755;
  z-index: -1;
}

.service-section .service-image img {
  width: 260px;
}

.portfolio-section{
  background-color: #f6f6f6;
  padding: 60px 0;
}

.portfolio-section .heading{
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}

.portfolio-section .paragraph-p {
  text-align: center;
  margin: -38px 0 0;
  font-size: 18px;
  color: #797979;
  line-height: 1.8;
  display: block;
}

.portfolio-section {
  padding-top: 60px; 
  padding-bottom: 60px ;
}

.portfolio-section .container{
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.portfolio-section .portfolio{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 80px;
}

.portfolio-section .container .portfolio .portfolio-sections{
      background-color: white;
}

.portfolio-section .container .portfolio .portfolio-sections img{
  max-width: 100%;
}

img{
  border-style: none;
}

.portfolio-section .portfolio-sections h3 {
  display: block;
  font-weight: bold;
  text-align: start;
  font-size: 20px;
  padding: 0 20px;
}

.portfolio-section .portfolio-sections p {
  color: #777;
  line-height: 1.7;
  text-align: start;
  padding: 0 20px;
}

.about-section {
  padding: 60px 0;
  
}

.about-section .heading-about{
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}

.about-section .paragraph-about {
  text-align: center;
  margin: -40px 0 0;
  font-size: 20px;
  color: #797979;
  display: block;
  line-height: 1.8;
}

.about-section .container{
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.about-section .about-info {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 300px;
}

.about-image {
  position: relative;
  width: 260px;
  display: flex;
  margin-left: 20px;
  
}

.about-image::before {
  content: "";
  position: absolute;
  width: 100px;
  height: calc(100% + 80px);
  background-color: #ebeced;
  top: -10px;
  left: -20px;
  z-index: -1;
}

.about-image::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 300px;                 
  border-left: 45px solid var(--main-color);
  border-bottom: 70px solid var(--main-color);
  right: -150px;
  top: -40px;
  z-index: -1;
}

.about-image img {
  width: 260px;
  height: 350px;
  object-fit: cover;
  display: block;

}

.about-info .about-text{
    font-weight: 600;
    line-height: 2;
    margin-bottom: 15px;
    font-size: 18px;
    padding-right: 20px;
}

.about-text{
  flex: 3;
}

.about-line {
  display: block;
  width: 300px;
  height: 1.5px;
  background-color: var(--main-color);
  margin-bottom: 70px;
  margin-top: 70px;
}

.about-section .about-text .about-subtext{
    color: #777;
    line-height: 2;
    font-size: 18px;
    font-weight: 400;
    margin-top: -40px;
    max-width: 585px;
}

.contact-section{
  background-color: #f6f6f6;
  padding: 60px 0;
}

.contact-section .contact-heading{
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}

.contact-section .contact-p {
  text-align: center;
  margin: -38px 0 0;
  font-size: 18px;
  color: #797979;
  line-height: 1.8;
  display: block;
}

.contact-section .contact-info{
  padding: 60px 60px 0 0;
    text-align: center;
}

.contact-section .contact-info .contact-link{
  display: block;
  font-weight: 800;
  text-decoration: none;
  color: var(--main-color);
  font-size: 36px;
  margin: 15px 0;
}

.contact-section .contact-info .social-media{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 18px;
}

.contact-section .contact-info .social-media i{
    margin-left: 10px;
    color: #2c4755;
    font-size: 20px;
   transition: all 0.3s ease;
   cursor: pointer;
}

.contact-section .contact-info .social-media i:hover{
  transform: scale(1.25) translateY(-3px);
  filter: brightness(1.3);
}

.contact-section .social-media .fa-youtube:hover{
  color: #ff0000;
}

.contact-section .social-media .fa-facebook-f:hover{
  color: #1877F2;
}

.contact-section .social-media .fa-twitter:hover{
  color: #1DA1F2;
}

.footer {
    background-color: #2c4755;
    color: white;
    padding: 30px 10px;
    text-align: center;
    font-size: 18px;
}

.footer span {
    font-weight: bold;
    color: var(--main-color)
    
}

.header .container .links{
  position: relative;
}

.header .links ul {
 list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #f6f6f6;
  min-width: 200px;
  display: none;
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.header .links:hover ul {
  display: block;
}

.header .links ul li a {
   display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.header .links ul::before {
  content: "";
  position: absolute;
  right: 10px;
  top: -20px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #f6f6f6 transparent;
}

.header .links ul li {
  border-bottom: 1px solid #ddd;
}

.header .links ul li:last-child {
  border-bottom: none;
}
 
@media (max-width: 768px) {
  .service-section .services-layout {
    grid-template-columns: 1fr;
  }

  .service-section .service-image {
    margin-top: 40px;
  }

  .about-section .about-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .about-text {
    margin-top: 0;
  }
}


@media (max-width: 992px) {
  .features .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features .container {
    grid-template-columns: 1fr;
  }
}




