html { font-size: 10px;}
body {
    font-size: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #333;
}
h1 {
    font-size: 4rem;
    margin-bottom: .5em;
}
h2 { font-size: 3rem; margin: 1em 0 .25em;}
h3 { font-size: 2.5rem; margin-bottom: .25em;}
p { margin: 0 0 1em;}
a { color: azure;
    text-decoration: none;
}
header {
    background-color: #111111;
    display: flex;
    justify-content: end;
    position: fixed;
    z-index: 100;
    width: 100%;
    box-shadow: 0 2px 9px white;
}
header h1 {
    margin-bottom: 0;
}
header h1 a {
    font-size: 3em;
    display: flex;
    align-items: center;
    margin: .5rem 1rem;
}
header a img {
    margin: 2rem 1rem;
    order: 1;
}
nav {
    position: absolute;
    top: 100%;
    background-color: #000000;
    width: 100%;
    display: none;
}
nav li {
    padding: 1rem;
    border-bottom: solid 1px #ffffff;
}
nav li a {
    display: block;
}
nav li a:hover {
    color: #5ce1e7;
}
nav ul li a.active {
    color: #5ce1e7;
}
.navToggler:checked ~ nav {
    display: block;
}
.navToggler { display: none;}
.navTogglerMenu {
    position: absolute;
    top: 0;
    left: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
}
.mi {
    color: azure;
}
.menuClose {
    display: none;
}
.navToggler:checked ~ .navTogglerMenu .menuClose {
    display: block;
}
.navToggler:checked ~ .navTogglerMenu .menuOpen {
    display: none;
}
/*nav ends, home begins*/
.hero {
    min-height: 100vh;
    background-image: url(../img/darkgrain.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sitename {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 250px;
}
.sitename img {
    width: 80%;
    height: auto;
    max-width: 1000px;
}
@keyframes shimmer {
    0% {
        filter: drop-shadow(0 0 0px
        rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow( 0 0 10px
        rgba(255, 255, 255, 0.9));
    }
    100% {
        filter: drop-shadow( 0 0 0px
        rgba(255, 255, 255, 0.5));
    }
}
.shimmer {
    animation: shimmer 4.5s infinite;
}
.sitebrand {
    color: #5ce1e7;
    font-size: 1.5rem;
    font-family: "Merriweather", serif;
    line-height: 1.7;
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
    font-weight: 700;
    min-height: 10rem;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.explore {
    display: block;
    margin: 4rem auto;
    text-transform: uppercase;
    text-align: center;
    background-color: #4ac0d3;
    font-weight: bold;
    width: 100px;
    padding: 0.75rem 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    border-radius: 10px;
}
    .explore:hover {
        background-color: #5ce1e7;
        transform: scale(1.05);
    }
    


/*home ends, about begins*/
.aboutsec {
    background-image: url(../img/about_bg.jpg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8rem;
}
.abouth1 {
 color: azure;
 text-align: center;
 font-size: 2.5rem;
 line-height: 2;
 margin-bottom: 1.5rem;
 font-family: "Merriweather", serif;
 padding-top: 5rem;
}
.ap {
    text-align: center;
    color: azure;
    padding: 3rem 1rem;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 1s ease forwards;
}
.ap:nth-of-type(1) {animation-delay: 1s;}
.ap:nth-of-type(2) {animation-delay: 2s;}
.ap:nth-of-type(3) {animation-delay: 3s;}

@keyframes fadeInUp {
    to {opacity: 1; transform: translate(0);}
}

.span {
    font-size: 1.7rem;
    color: #5ce1e7;
    font-weight: 600;
}
/*about ends, portfolio begins*/
.portsec1 {
    min-height: 100vh;
    background-image: url(../img/grain4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12rem;
}
.portmenu {
    margin-top: 11rem;
}
.porth1 {
    text-align: center;
    font-size: 2.5rem;
    font-family: "Merriweather", serif;
    color: azure;
}
.portmenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 400px;
}
.portmenu li a {
    text-decoration: none;
    color: azure;
    font-size: 2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}
.portmenu li a:hover {
    color: #2baeb5;
    transform: scale(1.1) translateY(3px);
}
/*portfolio ends, sub-pages begins*/
/*sub-pages begin*/
/*Web Design Projects*/
.wdsec1 {
    background-image: url(../img/subcat1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20rem;
}
.wdh1 {
    font-size: 2.5rem;
    color: azure;
    font-family: "Merriweather", serif;
    margin-bottom: 3rem;
    text-align: center;
}
.wdprojects {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    gap: 10rem;
    padding: 0 1rem;
}
.wdp1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.wdp1h2 {
  font-family: "Merriweather", serif;  
  color: azure;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.wdp1vid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
/*first vid ends, second begins*/

.wdp2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.wdp2h2 {
  font-family: "Merriweather", serif;  
  color: azure;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.wdp2vid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
/*second vid ends, third begins*/
.wdp3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.wdp3h2 {
  font-family: "Merriweather", serif;  
  color: azure;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.wdp3vid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
/*third vid ends, fourth begins*/
.wdp4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.wdp4vid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
.wdp4h2 {
  font-family: "Merriweather", serif;  
  color: azure;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
/*fourth vid ends, fifth begins*/
.wdp5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 7rem;
}
.wdp5vid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
.wdp5h2 {
  font-family: "Merriweather", serif;  
  color: azure;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pd {
    font-family: "Merriweather", serif; 
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease
}
.pd:hover {
    color: #2baeb5;
    transform: scale(1.1);
}
/*web design project details starts*/
/*recipe site details*/
.pdbody {
background: radial-gradient(circle, #000000 0%, #000000 55%, #6e6e6e 80%, #ffffff 100%);
}

.rpdsec1 {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 2rem;
}
.rpdh1 {
color: #2baeb5;
text-align: center;
font-size: 2.5rem;
padding-top: 15rem;
font-family: "Merriweather", serif;

}
.recipehero {
  height: auto;
  width: 100%;
  max-width: 700px;
  margin: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
}
.rpdp {
    color: azure;
    text-align: center;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    margin-bottom: 3rem;
}
.rpdsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
}
.recipefig1 {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
}
.recipeherocss {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
}
.recipefigcap1 {
    color: azure;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0;

}
.recipefig2 {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
}
.recipejs {
     width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
    
}
.recipefigcap2 {
    color: black;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
     margin: 2rem 0 4rem 0;
    line-height: 1.5;
    font-size: 1.5rem;
}
/*mag layout details*/
.mldsec1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}
.mldh1 {
color: #2baeb5;
text-align: center;
font-size: 2.5rem;
padding-top: 15rem;
font-family: "Merriweather", serif;
 }
 .mlhero {
    height: auto;
  width: 100%;
  max-width: 700px;
  margin: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
 }
 .mlpdp {
    color: azure;
    text-align: center;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    margin-bottom: 3rem;
 }
 .mldsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 }
 .mlfig1 {
     width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
 }
 .mlcssgrid1 {
   width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff; 
 }
 .mlfigcap1 {
    color: azure;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
 }
 .mlfig2 {
     width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
 }
 .mlcssgrid2 {
   width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff; 
 }
 .mlfigcap2 {
    color: black;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
 }
 /*Hero Section PD*/
 .heropdsec1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}
  .heropdh1 {
   color: #2baeb5;
   text-align: center;
   font-size: 2.5rem;
   padding-top: 15rem;
   font-family: "Merriweather", serif;
  }
  .herohero {
    height: auto;
  width: 100%;
  max-width: 700px;
  margin: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .heropdp{
    color: azure;
    text-align: center;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .heropdsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
  }
  .herofig1 {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
  }
  .hero_herocss {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff; 
  }
  .herofigcap1 {
    color: azure;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .herofig2 {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
  }
  .herojquery {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .herofigcap2 {
    color: black;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  /*Single Page PD*/
  .sppdsec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    flex-direction: column;
  }
  .sppdh1 {
    color: #2baeb5;
   text-align: center;
   font-size: 2.5rem;
   padding-top: 15rem;
   font-family: "Merriweather", serif;
   line-height: 1.5;
  }
  .sphero {
    height: auto;
  width: 100%;
  max-width: 700px;
  margin: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .sppdp {
    color: azure;
    text-align: center;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .sppdsec2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .spfig1 {
    width: 100%;
    max-width: 430px;
    text-align: center;
    padding: 2rem;
  }
  .spcss {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .spfigcap1 {
    color: azure;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .spfig2 {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
  }
  .spjs {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .spfigcap2 {
    color: black;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  /*Dragon Flame PD*/
  .dfpdsec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    flex-direction: column;
  }
  .dfpdh1 {
    color: #2baeb5;
   text-align: center;
   font-size: 2.5rem;
   padding-top: 15rem;
   font-family: "Merriweather", serif;
   line-height: 1.5;
  }
  .dfmobile {
    height: auto;
  width: 100%;
  max-width: 700px;
  margin: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .dfpdp {
    color: azure;
    text-align: center;
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .dfpdsec2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .dfpdfig1 {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 2rem;
  }
  .dfspritejs {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .dfpdfigcap1 {
    color: azure;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .dfpdfig2 {
     width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2rem;
  }
  .dfstartjs {
   width: 100%;
    max-width: 430px;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 2px 2px 9px #ffffff,
              -2px 2px 9px #ffffff;
  }
  .dfpdfigcap2 {
    color: black;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
/*project details end*/
/*web design ends, miscellaneous begins*/
.miscbody {
    background-image: url(../img/subcat3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.miscsec1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.misch1 {
    color: azure;
    font-size: 2.5rem;
    padding-top: 10rem;
    font-family: "Merriweather", serif;
}
.miscproj1h2 {
    font-size: 2rem;
    text-align: center;
    font-family: "Merriweather", serif;  
    color: azure;
    margin-bottom: 1rem;
}
.miscwork1 {
    padding: 0 1rem;
}
.miscproj1img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 2px 2px 9px white;
}
.workdesc1 {
    color: azure;
    text-align: center;
    font-family: "Merriweather", serif;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
    
}

.miscproj2h2 {
    font-size: 2rem;
    text-align: center;
    font-family: "Merriweather", serif;  
    color: azure;
    margin-bottom: 1rem;
}
.miscwork2 {
    padding: 0 1rem;
}
.miscproj2img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 2px 2px 9px white;
}
.workdesc2 {
    color: azure;
    text-align: center;
    font-family: "Merriweather", serif;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
    
}
.miscproj3h2 {
    font-size: 2rem;
    text-align: center;
    font-family: "Merriweather", serif;  
    color: azure;
    margin-bottom: 1rem;
}
.miscproj3img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 2px 2px 9px white;
}
.workdesc3 {
    color: azure;
    text-align: center;
    font-family: "Merriweather", serif;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
}

.miscproj4h2 {
    font-size: 2rem;
    text-align: center;
    font-family: "Merriweather", serif;  
    color: azure;
    margin-bottom: 1rem;
}
.miscproj4img {
    width: 100%;
    max-width: 400px;
    background-color: #000000;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 2px 2px 9px white;
}
.workdesc4 {
    color: azure;
    text-align: center;
    font-family: "Merriweather", serif;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
}

.miscproj5h2 {
    font-size: 2rem;
    text-align: center;
    font-family: "Merriweather", serif;  
    color: azure;
    margin-bottom: 1rem;
}
.miscproj5img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 2px 2px 9px white;
}
.workdesc5 {
    color: azure;
    text-align: center;
    font-family: "Merriweather", serif;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0.5rem auto 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.project {
    margin-bottom: 10rem;
}





/*contact begins*/
.contactsec1 {
background-image: url(../img/subcat2.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
padding-bottom: 3rem;
}
.contacth1 {
    color: azure;
    font-size: 2.5rem;
    font-family: "Merriweather", serif;
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 12rem;
}
form {
    display: flex;
    flex-direction: column;
    /*background: radial-gradient(circle, #0a0a0a, #555555, #0fd1c5);*/
    width: 80%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    margin-top: 2rem;

    
}
input, textarea {
    width: 100%;
    border-radius: 5px;
   margin-bottom: 1rem;
   padding: .75rem 1rem;
   border: 2px solid #ccc;
   font-size: 1rem;
   transition: border-color 0.3s, box-shadow 0.3s;
   box-sizing: border-box;
}
textarea {
    min-height: 150px;
}
input::placeholder,
textarea::placeholder {
    color: black;
    opacity: 1;
}
button {
    padding: .5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 150px;
    margin: 1rem auto;
    background-color: #5ce1e7;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}
button:hover {
    background-color: aquamarine;
    transform: scale(1.05);
    cursor: pointer;
}
.sm {
    margin: .5rem 0 .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.fb {
    color: azure;
    font-size: 3rem;
}
.ig {
    color: azure;
    font-size: 3rem;
}
.contact-form, .sm {
    opacity: 0;
    transform: translateY(60px);
}
.contact-form {
    animation: contactFadeUp 1.9s ease forwards;
    animation-delay: 0.2s;
    width: 80%;
    max-width: 500px;
}
.sm {
    animation: contactFadeUp 1.9s ease forwards;
    animation-delay: 0.8s;
}
@keyframes contactFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-form input,
.contact-form textarea {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5ce1e7;
    box-shadow: 0 0 10px rgba(92,255,231,0.35);
    transform: scale(1.01);
}

/*Contact Ends*/
footer {
    color: azure;
    text-align: center;
    background-color: #000000;
    width: 100%;
    position: fixed;
    bottom: 0;
    padding-top: 1.3rem;
    font-family: "Inter", sans-serif;
    box-shadow: 0 -2px 9px white;
}

@media screen and (min-width: 800px) {
 .navTogglerMenu {
    display: none;
 }
 header {
    justify-content: start;
 }
 header a img {
    order: 0;
 }
 nav {
    all: unset;
    margin-left: auto;
    align-self: center;
}
 nav ul {
    display: flex;
    margin-right: 1rem;
 }
 nav li {
    border-bottom: none;
 }
 /*nav ends, home begins*/
 .sitename {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
}
.sitebrand {
    max-width: 100%;
    font-size: 2.2rem;
    margin: 5rem auto;
    min-height: 2rem;
}
.explore {
    font-size: 2rem;
    width: 160px;
    padding: 1rem 1.5rem;
}
/*home ends, about begins*/
.aboutsec {
    padding-top: 12rem;
    margin-bottom: 1rem;
}
.abouth1 {
  font-size: 5rem;
  margin-bottom: 0;
}
.ap {
    max-width: 800px;
    padding: 3rem 1.5rem;
    transform: translateY(20px);
}
/*about ends, portfolio begins*/
.porth1 {
    font-size: 5rem;
}
.portmenu {
    margin-top: 20rem;
}
.portmenu ul {
    flex-direction: row;
}
.portmenu li a {
    font-size: 3rem;
}
/*portfolio sub-pages*/
/*Web Design*/
.wdh1 {
    font-size: 5rem;
}
.wdprojects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-rows: auto;
    align-items: start;
}
.wdprojects > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.wdprojects video {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.wdprojects h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.pd {
    font-size: 2rem;
}
/*Project Details Pages*/
/*Recipe Site PD*/
.rpdh1 {
    font-size: 5rem;
}
.rpdsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: row;
}
.rpdsec2 figure {
    max-width: 490px; 
}
.recipefigcap2 {
    color: azure;
    margin-bottom: 4rem;
}
.recipejs {
    margin-bottom: 1rem;
}
/*Magazine Layout PD*/
.mldh1 {
    font-size: 5rem;
}
.mldsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: row;
}
.mldsec2 figure {
    max-width: 490px; 
}
.mlfigcap2 {
    color: azure;
    margin-bottom: 4rem;
}
/*Hero Section PD*/
.heropdh1 {
    font-size: 5rem;
}
.heropdsec2 {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: row;
}
.heropdsec2 figure {
    max-width: 430px; 
}
.herofigcap2 {
    color: azure;
    margin-bottom: 4rem;
}
/*Single Page PD*/
.sppdsec2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .spfigcap2 {
    color: azure;
  }
  /*Dragon Flame PD*/
  .dfpdsec2 {
   display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; 
  }
  .dfpdfigcap2 {
    color: azure;
  }
/*Miscellaneous*/
.misch1 {
    font-size: 5rem;
}
.project h2 {
    font-size: 3rem;
}
.project p {
    font-size: 2rem;
}


/*portfolio ends, contact begins*/
.contacth1 {
    font-size: 5rem;
    padding-top: 11.5rem;
   
}
.fb {
    color: azure;
    font-size: 6rem;
}
.ig {
    color: azure;
    font-size: 6rem;
}
textarea {
    min-height: 250px;
    resize: vertical;
}
.contact-form {
    animation-duration: 1s;
}
.sm {
    animation-duration: 1s;
    animation-delay: 0.75s;
}

}

@media screen and (min-width: 1200px) {
    header {
        padding: 0 5%;
    }
}