/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v12-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v12-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v12-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {

    --clr-bg-blue-500:#011638;
    --clr-bg-blue-700-transpernt:rgba(1, 15, 39, .7);
    --clr-bg-blue-700:#010F27;
    --clr-accent-one: #1FD4B0;
    --clr-accent-two: #DAFFFF;
    --clr-accent-three: #BDDEDE;

    --ff-primary: 'Inter', sans-serif;
    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
    --fw-regular: 400;
    --fw-semibold: 500;
    --fw-bold: 600;
    --fw-extrabold: 700; 
    --fs-p: 1.125rem;
    --fs-nav: 1.125rem;
    

    --screen-phones:576px;
    --screen-small-tablet:768px;
    --screen-large-tablet:1024px;
    --screen-small-desktop:1280px;
    --screen-large-desktop:1536px;
    --screen-fhd:1920px;
    --screen-qhd:2560px;
    --screen-4k:3840px;



}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html,
body {
    height:100%;
    background-color: var(--clr-bg-blue-700);
    font-family: 'Inter', sans-serif;

}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}


/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* CSS Reset ends here*/

/* Custom Styling from here on out */

/* header styling start */
header{
  padding-top: 20px;
}

.nav-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}

header svg {
  width: 198px;
  
}
.navclosebtn {
  display: none;
}

nav{
  right: 0%;
}

.primary-navigation ul {
  display: flex;
  list-style: none;
  align-items: center ;

}

.primary-navigation ul li{
  padding: 0 20px 0 20px;
}

.primary-navigation ul li span {
  color: var(--clr-accent-one);
  padding-right: .625rem;
  font-size: 1rem;
}

.primary-navigation ul li a{
  color: var(--clr-accent-two);
  text-decoration: none;
  font-size: var(--fs-nav);
}

.mobile-nav-toggle{
  display: none;
}
.mobile-menu-icon{
  display: none;
}

.header-cta-button{
  display: inline-flex;
  background: var(----clr-bg-blue-700);
  border: 2px solid var(--clr-accent-one);
  color: var(--clr-accent-one);
  padding: .3125rem 1rem;
  border-radius: .3125rem;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
}
.sidenav-cta-button{
  display: inline-flex;
  background: var(----clr-bg-blue-700);
  border: 2px solid var(--clr-accent-one);
  color: var(--clr-accent-one);
  padding: .3125rem 1rem;
  border-radius: .3125rem;
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
}
.primary-navigation ul li a.sidenav-cta-button{
  color: var(--clr-accent-one);
}
/* header ends here */

/* hero-content start */
section.hero-content {
  margin-top: 10%;
}
.small-clr-text {
  font-size: 1.125rem;
  color: var(--clr-accent-three);
}
.hero-name {
  font-size: clamp(2rem, 7vw, 4.875rem);
  color: var(--clr-accent-two);
  line-height: 1.5;
}
.hero-h1{
  font-size: clamp(2rem, 7vw, 3.875rem);
  color: var(--clr-accent-one);
  line-height: 1.1;
}
.hero-p {
  font-size: var(1.125rem, );
  color: var(--clr-accent-three);
  max-width: 540px;
  margin-top: 30px;
}
.hero-cta-button{
  display: inline-flex;
  background: var(----clr-bg-blue-700);
  border: 2px solid var(--clr-accent-one);
  color: var(--clr-accent-one);
  padding: .3125rem 1rem;
  border-radius: .3125rem;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  margin-top: 40px;
  text-decoration: none;

}
/* hero section ends here */

/* project gallery starts here */
.container-project-mockup {
  max-width: 1230px;
  margin: 0 auto;
}
.mockup-holder{
  display: flex;
  align-items: baseline;
  position: relative;
}
.mackbook-mockup{
  max-width: 1230px;

}
img.mackbook-mockup{
  position: relative;
  z-index: 3;
}
.mac-slider-frame{
  position: absolute;
  background-image: url(/assets/images/iphone-slide-4.webp);
  background-size: cover;
  top: 51px;
  left: 125px;
  width: 979px;
  height: 614px;
  z-index: 1;

}
.iphone-mockup {
  width: clamp(250px, 300px, 300px);
  position: relative;
  right: 0;
  bottom: 0;

}
img.iphone-mockup {
  max-width: clamp(250px, 300px, 300px);
  position: absolute;
  z-index: 5;

}
.iphone-slider-frame{
  position: absolute;
  background-image: url(/assets/images/macbook-slide-5.webp);
  top: -570px;
  left: -289px;
  width: 280px;
  height: 556px;
  z-index: 4;
  border-radius: 0 0 18px 18px;  
  background-size: contain ;
}
/* project gallery ends here */

/* services section start */
section.services{
  margin-top: 150px;
}
.section-title-number{
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  color: var(--clr-accent-one);
  padding: 0 20px 0 0 ;
}
.section-title-regular{
  font-size: 2rem;
  color: var(--clr-accent-three);
  font-weight: var(--fw-bold);
}
.services-cards-grid{
  display: flex;
  flex-flow: row wrap;  
  justify-content: space-around;
  row-gap: 30px;
  margin-top: 50px;
  align-items: baseline;
}
.service-card{
  display: flex;
  flex-direction: column;
  width: 390px;
  color:var(--clr-accent-three);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--clr-accent-one);
  border-radius: 10px;
}

.service-icon-svg{
  margin: 10px;
  height: 60px;
}
h2.card-heading{
  font-size: 1.375rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-accent-two);
  padding: 10px 0;
}
p.card-description{
  font-size: var(--fs-p);
  color: var(--clr-accent-three);
  padding: 10px 0;
}

/* services section end */

/* about me section start */
section.about-me{
  margin-top: 150px;
}
.about-me-grid{
  display: flex;
  margin-top: 50px;
  column-gap: 30px;
}
p.about-me-p{
  margin-top: 0;
  font-size: var(--fs-p);
  color: var(--clr-accent-three);
  flex-basis: 65%;
  
}
.about-me-imgbox{
  position: relative;
  width: 100%;
  height: 100%;
  flex-basis: 30%;

}
.about-me-imgbox::before{
  content: "";
  background-color: var(--clr-accent-one);
  opacity: .2;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;

}
.about-me-imgbox::after{
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  border: 2px solid var(--clr-accent-one);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  z-index: -1;

}
img.about-me-img{
  position: relative;
  left: 0px;
  width: 100%;
  height: 100%;
}
/* about me section end */

/* testimonials start */
section.testimonials{
  margin-top: 150px;
}
.testimonials-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 50px;
  margin-top: 60px;

}
.review-card{
  flex-basis: 40%;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--clr-accent-one);
  border-radius: 10px;
}
blockquote.review{
  font-size: var(--fs-p);
  color: var(--clr-accent-three);
}
.reviewers-details{
  font-size: var(--fs-p);
  font-weight: var(--fw-bold);
  padding-top: 20px;
  color: var(--clr-accent-three);

}
/* testimonials end */

/* contact me start */
section.contact-me{
  margin-top: 150px;
}
.section-title-center{
  font-size: 1.375rem;
  color: var(--clr-accent-one);
  text-align: center;
  
}
.section-title-center .section-title-number{
  font-size: 1.25rem;
}
.contact-lrg-heading{
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: var(--clr-accent-two);
  display: table;
  margin: 0 auto;
}
.contact-me-p{
  font-size: var(--fs-p);
  color: var(--clr-accent-three);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-cta-box{
  display: flex;
  justify-content: center;
  column-gap: 50px;
  margin-top: 50px;
}
.contact-cta-button{
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-accent-one);
  text-decoration: none;
  border: 2px solid var(--clr-accent-one);
  padding: .5rem 1rem;
  border-radius: .3125rem;
  text-align: center;
}
/* conatct me end */
/* footer start */
footer{
  margin-top: 150px;
  padding-bottom: 5px;
}
.footer-credits{
  display: table;
  margin: 0 auto;
  font-size: var(--fs-p);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent-three);
}
.footer-credits-name{
  font-size: 1.375rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-accent-one);
}
/* footer end */


/* Media Queries Start */
@media (min-width:1025px) and (max-width:1280px){
  .nav-wrapper{
    padding: 0 5%;
  }
  .container-project-mockup{
    width: 1024px;
    margin: 0 auto;

  }

  .mackbook-mockup{
    max-width: 1024px;
  
  }
  .mac-slider-frame{
    top: 42px;
    left: 105px;
    width: 815px;
    height: 511px;
  }
  .iphone-mockup {
    width: 250px;
    position: absolute;
  
  }
  .iphone-slider-frame{
    top: -475px;
    left: 12px;
    width: 227px;
    height: 471px;
  }


}
@media (max-width: 1024px) {
  .container{
    padding: 0 50px;
  }
  header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    z-index: 999;
    background-color: var(--clr-bg-blue-700);
  }
  header .nav-wrapper{
    padding: 0 5%;
  }
  .primary-navigation{
    display: none;
  }
  .header-cta-button{
    display: none;
  }
  .mobile-nav-toggle{
    display: block;
    background-color: transparent;
    border: none;
  }
  .nav-wrapper .mobile-nav-toggle .mobile-menu-icon{
    display: block;
    fill: var(--clr-accent-one);
    width: 2.125rem;    
  }
 
  /* side nav start */
  
 .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: var(--clr-bg-blue-700-transpernt);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.sidenav ul{
  top: 15%;
  position: relative;
  flex-direction: column;
  margin: 0 auto;
  align-items: flex-start;
  list-style: none;
}
.sidenav ul li{
  padding: 15px 0px;
}
.sidenav ul li span {
  color: var(--clr-accent-one);
  padding-right: .625rem;
  font-size: 1.125rem;
}

.sidenav a {
  padding: 8px 8px;
  text-decoration: none;
  font-size: var(--fs-nav);
  color: var(--clr-accent-two);
  display: block;
  transition: 0.3s;
  font-weight: var(--fw-extrabold);
}

.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav ul li a {
  flex-direction: column;
  display: inline;
  font-size: 1.25rem;
  color: var(--clr-accent-two);
  
}
.sidenav ul li a.sidenav-cta-button{
  display: inline-flex;
  border: 2px solid var(--clr-accent-one);
  color: var(--clr-accent-one);
  padding: .3125rem 1rem;
  font-weight: var(--fw-semibold);
}

.sidenav .navclosebtn {
  display: block;
  width: 1.8rem;
  position: absolute;
  top: 25px;
  right: 5%;
  fill: var(--clr-accent-two);
}

.sidenav-cta-button{
  display: inline-flex;
  background: var(----clr-bg-blue-700);
  border: 2px solid var(--clr-accent-one);
  color: var(--clr-accent-one);
  padding: .3125rem 1rem;
  border-radius: .3125rem;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);

}
/* side nav ends here */

.mackbook-mockup{
  display: none;
}

/* services grid start*/
.services-cards-grid{
  justify-content: space-around;
}

.testimonials-box{
  flex-direction: column;
}

/* sections scroll margin */
section{
  scroll-margin-top: 120px;
}

  
}

@media (min-width:577px) and (max-width:1024px) {
  section.hero-content{
    margin-top: 30%;
  }
  /* project mockup slider for tablet size */
  section.project-mockup-slider{
    margin-top: 30%;
  }
  .iphone-mockup{
    position: relative;  
    margin: 0 auto;
    max-width: 453px;
    width: 453px;

  }
  img.iphone-mockup {
    max-width: 453px;
    position: relative;
  
  }
  .iphone-slider-frame{
    top: 66px;
    left: 20px;
    width: 412px;
    height: 844px;
    z-index: 4;
    border-radius: 0 0 18px 18px;
  }

}

@media (max-width:768px) {
  
  .nav-logo{
    width: 140px;
  }
  .about-me-grid{
    flex-direction: column-reverse;
    margin-top: 0px;
    
  }
  .about-me-imgbox{
    position: relative;
    width: 250px;
    height: 250px;
    margin: 15% auto;
  }
  
  

}

@media (max-width:576px) {
  .section-title-number{
    font-size: 1.25rem;
    font-weight: var(--fw-regular);
    
  }
  .section-title-regular{
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
  }
  section.hero-content {
    margin-top: 250px;
  }
  section.project-mockup-slider{
    margin-top: 30%;
  }
  .container{
    padding: 0 25px;
  }
  
  .nav-logo{
    width: 140px;
  }
  .iphone-mockup{
    width: 300px;
    position: relative;  
    margin: 0 auto;
  }
  img.iphone-mockup {
    max-width: clamp(250px, 300px, 300px);
    position: relative;
    z-index: 5;
    aspect-ratio: 150 / 307;
  
  }
  .iphone-slider-frame{
    top: 44px;
    left: 15px;
    width: 272px;
    height: 558px;
    z-index: 4;
    border-radius: 0 0 18px 18px;  
    
  }
  .contact-cta-box{
    flex-direction: column;
    row-gap: 20px;
  }
  
}

/* Media Queries End */

/* utility classes start here */

.is-display-none{
  display: none !important;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}


section{
  margin: 40px 0;
}
.margin-top-10{
  margin-top: 10%;
}