@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  overflow-x: hidden;
  background-color: var(--white);
  padding: 2.4rem 0 2.4rem 0;
  min-height: 100vh;
}

:root {
  --black: #1a1f2c;
  --light-black: #576076;
  --white: #ffffff;
  --title-color: #212529;
  --primary-color: #4770ff;
  --rating-color: #faad3d;
  --hover-btn: #2563eb;
  --rating-link: #0d6ffd;
  --paragraph: #616670;
  --background: #f0f2f5;
  --border: #dbdfe5;
  --linkedin-icon: #0077b5;
  --github-icon: #000000;
  --discord-icon: #5865f2;
  --whatsapp-icon: #25d366;
  --dark-theme-black: #0E1018;
  --sun-btn-color: #fd7e41;
}

/* Dark Theme Mode */
.dark-mode {
  --black: #ffffff;
  --light-black: #576076;
  --white: #000000;
  --title-color: #ffffff;
  --primary-color: #4770ff;
  --rating-color: #faad3d;
  --hover-btn: #2563eb;
  --rating-link: #0d6ffd;
  --paragraph: #616670;
  --background: #0E1018;
  --light-background: #A8AAAC;
  --border: #dbdfe5;
  --linkedin-icon: #0077b5;
  --github-icon: #000000;
  --discord-icon: #5865f2;
  --whatsapp-icon: #25d366;
  --dark-theme-light-white: #1A1F2C;
}

.dark-mode .navbar-logo img {
  background-color: var(--black);
  padding: 0 2.4rem;
  border-radius: .8rem;
}

.dark-mode .icon-title {
  color: var(--light-background);
}

.dark-mode .expert-area-section .expert-icons {
  background-color: var(--light-background);
}

.dark-mode .desc-content-btn .copy-btn,
.dark-mode .description-content .socail-media-icon .icons {
  background-color: transparent;
  border: .1rem solid var(--dark-theme-light-white) !important;
}

.dark-mode .desc-content-btn .copy-btn:hover {
  color: var(--black);
}

.dark-mode .let-talk-btn {
  background-color: var(--background);
  color: var(--black);
}

.dark-mode .bootcamp-intership-card:hover {
  border: .1rem solid var(--primary-color);
}

.dark-mode .send-message-content input,
.dark-mode .send-message-content textarea,
.dark-mode .send-message-content select {
  background-color: var(--white);
  color: var(--black);
}

.dark-mode .description-content .socail-media-icon .icons:hover .fa-github,
.expert-area-section .expert-icons .fa-github:hover {
  color: var(--black);
}

.dark-mode .send-message-section .send-message {
  color: var(--black);
}

.dark-mode .blog-title-content .post-date {
  color: var(--paragraph);
}

/* Customised Reusable Layout */

li,
a {
  list-style: none;
  text-decoration: none;
  color: var(--light-black);
}

.card-title {
  color: var(--title-color);
  font-size: 2.4rem;
  margin: 0 0 0.8rem;
}

.link-btn {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.btn {
  border-radius: 0.8rem;
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2em;
  margin-left: 1.6rem;
}

.container {
  max-width: 133rem;
  height: auto;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2.4rem;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(41.6rem, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(30rem, 1fr));
}

.grid-rows-1 .about-me-card {
  grid-row: 1;
}

.p-relative {
  position: relative;
  top: 0;
  left: 0;
}

.p-absolute {
  position: absolute;
}

.p-r-1 {
  padding-right: 0.4rem;
}

.d-block {
  display: block;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-start {
  align-items: flex-start;
}

.item-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.space-evenly {
  justify-content: space-evenly;
}

.space-around {
  justify-content: space-around;
}

.flex-start {
  justify-content: flex-start;
}

.wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

.w-fit-content {
  width: fit-content;
}

.h-full {
  height: 100%;
}

.h-fit-content {
  height: fit-content;
}

.gap-1 {
  gap: 1rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-half-one {
  gap: 1.5rem;
}

.mb-1-half {
  margin-bottom: 1.6rem;
}

.mb-2-half {
  margin-bottom: 2.4rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.gap-2 {
  gap: 2rem;
}

.main-title {
  font-size: 4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 0.9em;
}

.main-sub-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  line-height: 0.9em;
}

.title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5em;
}

.sub-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light-black);
  line-height: 1.42em;
}

.highlight-primary {
  color: var(--primary-color);
}

.highlight-black {
  color: var(--black);
  font-weight: 600;
}

.icon-title {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  text-align: center;
}

.main-para {
  font-size: 24px;
  font-weight: 400;
  color: var(--light-black);
  line-height: 1.333em;
  width: 60%;
}

.para {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--light-black);
}

/* Header Part Start */

.header-section {
  width: 100%;
  z-index: 99;
  position: sticky;
  top: 0;
}

.navbar {
  background-color: var(--white);
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1rem 3rem;
  justify-content: space-between;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(26, 31, 44, 0.25);
  border-radius: 1.6rem;
}

.navbar-logo img {
  height: 5rem;
  aspect-ratio: auto;
}

.navbar-content .navbar-list {
  display: flex;
  font-size: 1.6rem;
  gap: 1rem;
}

.navbar-list .navbar-item {
  padding: 1rem 1.2rem;
}

.navbar-list .navbar-item:hover {
  background-color: var(--background);
  border-radius: 0.8rem;
  transition: all 0.3s ease-in;
}

.navbar-list .navbar-item:hover .navbar-link i {
  color: var(--black);
  transition: all 0.3s ease-out;
}

.navbar-list .navbar-item .navbar-link:active {
  color: var(--black);
  background-color: var(--background);
  border-radius: 0.8rem;
}

.theme-btn .fa-moon,
.theme-btn .fa-sun {
  display: block;
  font-size: 2.5rem;
  background-color: inherit;
  cursor: pointer;
  line-height: 2.5rem;
  width: 6rem;
}

.theme-btn .fa-sun,
.theme-content .theme-changed .fa-sun {
  color: var(--sun-btn-color);
}

.let-talk-btn {
  padding: 1.5rem 2.4rem;
  background-color: var(--black);
  color: var(--white);
  transition: all 0.3s ease-out;
}

.let-talk-btn:hover {
  background-color: var(--primary-color);
}

.navbar .menu-bar-icon {
  display: none;
  font-size: 2.5rem;
}

/* Mobile Navbar Section Start */

.mobile-navbar {
  position: fixed;
  top: 0;
  left: -26rem;
  width: 26rem;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  padding: 2.4rem;
  transition: all linear 0.3s;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(26, 31, 44, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-navbar-active {
  left: 0;
}

.menu-bar .navbar-logo {
  margin-bottom: 2rem;
  margin-left: 2.5rem;
}

.mobile-navbar .navbar-content .navbar-list {
  display: flex;
  font-size: 1.6rem;
  gap: 1rem;
  flex-direction: column;
}

.theme-content {
  height: fit-content;
  margin: 2rem 0;
  width: 100%;
}

.theme-content .theme-changed {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  transition: all 0.3 ease-in;
}

.theme-content .theme-changed:hover {
  background-color: var(--background);
}

.theme-content .theme-changed .fa-moon,
.theme-content .theme-changed .fa-sun {
  font-size: 2rem;
  display: block;
}

/* .theme-content .theme-changed .fa-sun {
  color: var(--sun-btn-color);
} */

.theme-content .theme-changed span {
  font-size: 1.4rem;
}

.theme-content .talk-btn {
  width: 100%;
  background-color: var(--black);
  padding: 1.5rem 1.2rem;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 0.8rem;
  margin-top: 2rem;
  transition: all 0.3s ease-in;
}

.theme-content .talk-btn:hover {
  background-color: var(--primary-color);
}

.theme-content .talk-btn a {
  color: var(--white);
}

/* Header Part End */

/* Main area Part Start */

/* About Me Section Start */

.about-me-card {
  grid-row: 1/3;
}

.recent-project-section {
  grid-row: 1/3;
  grid-column: 3/4;
}

.services-offered-section {
  grid-column: 1/3;
}

.main-content {
  margin-top: 2.4rem;
}

.main-content .card-item-home {
  border-radius: 1.6rem;
  box-shadow: rgba(26, 31, 44, 0.25) 0 0.1rem 0.2rem 0;
  padding: 2.4rem !important;
  background-color: var(--white);
}

.main-content .card-item {
  border-radius: 1.6rem;
  box-shadow: rgba(26, 31, 44, 0.25) 0 0.1rem 0.2rem 0;
  padding: 3rem !important;
  background-color: var(--white);
}

.main-content .about-me-card .image-content {
  width: 100%;
  height: 26rem;
  position: relative;
  background-color: var(--background);
  border-radius: 0.8rem;
}

.main-content .about-me-card .image-content img {
  width: 25rem;
  aspect-ratio: 1;
  margin-top: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-content .about-me-card .description-content h1 {
  font-size: 2.4rem;
  margin: 4rem 0 1.5rem 0;
  line-height: 1.333em;
  font-weight: 600;
}

.main-content .about-me-card .description-content p span {
  font-weight: 600;
  color: var(--black);
}

.main-content .about-me-card .description-content p {
  margin-top: 1.5rem;
  color: var(--light-black);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}

.main-content .about-me-card .desc-content-btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 3rem;
  text-align: center;
}

.main-content .about-me-card .desc-content-btn .call-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  margin-left: 0;
  margin-right: 0.8rem;
  transition: all 0.3s ease-in;
}

.main-content .about-me-card .desc-content-btn .call-btn:hover {
  background-color: var(--hover-btn);
}

.main-content .about-me-card .desc-content-btn .copy-btn {
  width: 100%;
  border: 0.1rem solid var(--border);
  margin-left: 0;
  margin-right: 0.8rem;
  transition: all 0.3s ease-in;
}

.main-content .about-me-card .desc-content-btn .copy-btn:hover {
  background-color: var(--background);
}

.main-content .description-content .socail-media-icon {
  display: flex;
  margin-top: 4rem;
  gap: 2.4rem;
}

.description-content .socail-media-icon .icons {
  color: #384559;
  font-size: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--border);
  text-align: center;
  line-height: 6rem;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.description-content .socail-media-icon .icons:hover .fa-linkedin {
  color: var(--linkedin-icon);
}

.description-content .socail-media-icon .icons:hover .fa-instagram {
  color: #e1306c;
}

.description-content .socail-media-icon .icons:hover .fa-github,
.expert-area-section .expert-icons .fa-github:hover,
.expert-area-section .expert-icons .fa-notion:hover {
  color: var(--github-icon);
}

.description-content .socail-media-icon .icons:hover .fa-discord {
  color: var(--discord-icon);
}

.description-content .socail-media-icon .icons:hover .fa-whatsapp {
  color: var(--whatsapp-icon);
}

/* About Me Section End */

/* Work Experience Section  Start*/
.work-experience-section .work-experience-content {
  width: 100%;
  height: 24.5rem;
  overflow: hidden;
}

.work-experience-content .work-experience-card {
  max-height: 25rem;
  width: 100%;
  animation: scroll-y-animation 10s linear infinite;
}

.work-experience-content:hover .work-experience-card {
  animation-play-state: paused;
}

.work-experience-body .work-duration-item p {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--light-black);
  margin-right: 4rem;
}

.work-company-item .work-company-logo {
  height: 3.5rem;
  width: 3.5rem;
  padding: 1rem;
}

.work-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-company-item .work-company-logo img {
  margin-top: 0.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
}

/* Work Experience Section  End*/

/* My Expert Area Section Start */

.expert-area-section {
  height: 100%;
}

.expert-icons-content {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.expert-icons-content .expert-icons-card {
  width: fit-content;
}

.expert-area-section .expert-icons {
  width: fit-content;
  background-color: var(--background);
  padding: 1.4rem 3.5rem;
  font-size: 2.2rem;
  border-radius: 0.8rem;
  color: var(--light-black);
  transition: all 0.5s ease-out 0.5;
}

.expert-area-section .expert-icons img {
  width: 4rem;
  aspect-ratio: 1;
}

/* My Expert Area Section End */

/* Recent Projects Section Start */
.recent-project-section {
  height: 100%;
  width: 100%;
}

.recent-project-section .recent-title-card {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.recent-title-card a,
.services-title-card a {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  border-bottom: 0.1rem solid var(--border);
  transition: all 0.3s ease-out;
}

.recent-title-card a:hover,
.services-title-card a:hover {
  border-bottom: 0.1rem solid var(--primary-color);
}

.recent-project-section .recent-projects-card {
  width: 100%;
  height: calc(100% - 10%);
  padding: 1.2rem 1rem;
  border-radius: 0.8rem;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  gap: 2rem;
}

.recent-projects-card .projects-card {
  width: 100%;
  height: 50%;
  background-color: var(--background);
  border-radius: 0.8rem;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.projects-card .project-1 {
  width: 90%;
  height: 90%;
  border-radius: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("./images/project-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9;
}

.hover-icon {
  display: none;
}

.projects-card:hover .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 3.2rem;
  color: var(--primary-color);
  height: 4rem;
  width: 4rem;
  line-height: 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(26, 31, 44, 0.25) 0 0.1rem 0.2rem 0;
  cursor: pointer;
}

.projects-card .category {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  background-color: var(--white);
  color: var(--primary-color);
  z-index: 9999;
  border-radius: 0.8rem;
}

.projects-card .project-2 {
  width: 90%;
  height: 75%;
  border-radius: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("./images/project-2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Recent Projects Section End */

/* Services I Offered Section Start */

.services-offer-container {
  height: calc(100% - 15%);
  gap: 3rem;
  padding: 1.6rem 1.6rem 2.4rem;
}

.service-offer-card {
  width: 20.1rem;
  height: 20rem;
  background-color: var(--background);
  border-radius: 0.8rem;
  padding: 0 1.2rem;
  flex-direction: column;
  align-items: center;
}

.service-offer-card .service-offer-image {
  width: 90%;
  background-color: var(--white);
  padding: 1.6rem 1.6rem 2.4rem;
  border-radius: 0.8rem;
}

.service-offer-card .service-offer-image img {
  display: block;
  margin: 0 auto;
  height: 6.4rem;
  aspect-ratio: 1;
}

.service-offer-card .icon-title {
  margin-top: 1.6rem;
}

/* Services I Offered Section  End */

/* Lets work Together Section Start */
.lets-talk-together-card .scrolling-info {
  background-color: var(--background);
  overflow: hidden;
  border-radius: 0.8rem;
  height: 5.6rem;
  margin: 1.2rem 0 2.4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.lets-talk-together-card .card-title {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.scrolling-info p {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--light-black);
  animation: slide-Animation 10s linear infinite;
  margin-right: 1rem;
}

.lets-talk-together-card .link-btn,
.footer-content .link-btn {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  border-bottom: 0.1rem solid var(--border);
  transition: all 0.3s ease-out;
}

.lets-talk-together-card .link-btn:hover,
.footer-content .link-btn:hover {
  border-bottom: 0.1rem solid var(--primary-color);
}

.lets-talk-together-card .link-btn img {
  height: 2rem;
  width: fit-content;
  position: relative;
  top: 0.3rem;
}

/* Lets work Together Section End */

/* Main area Part End */

/* Contact Page Let's Work Together Section Start*/

.contact-work-together-section,
.about-me-page-section,
.blog-page-section,
.project-page-section {
  grid-column: 2/4;
  grid-row: 1/3;
  padding: 5rem !important;
}

.contact-work-body .send-message-container {
  margin-top: 5.4rem;
}

.send-message-container .send-message-content {
  height: 100%;
  width: 100%;
  background-color: var(--background);
  border-radius: 0.8rem;
  padding: 5rem;
}

.name-email-section .user-name,
.name-email-section .user-email,
.subject-budget-section .user-subject,
.subject-budget-section .user-budget {
  width: 100%;
  margin-bottom: 1.5rem;
}

.send-message-content label {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4em;
  margin: 1rem;
}

.send-message-content input,
.send-message-content textarea,
.send-message-content select {
  width: 100%;
  border-radius: 8px;
  padding: 1.6rem 2.4rem;
  border: 0.1rem solid var(--border);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--light-black);
  outline: none;
}

.send-message-content select {
  display: block;
  height: 5.67rem;
  padding: 1.6rem 2.4rem;
}

.send-message-content input:focus {
  outline: 0.1rem solid var(--light-black);
}

.send-message-section .send-message {
  margin-top: 2rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  padding: 1.6rem 2.4rem;
  border: 0;
  border-radius: 0.8rem;
  transition: 0.3s ease-in;
  cursor: pointer;
}

.send-message-section .send-message:hover {
  background-color: var(--hover-btn);
}

.send-message img {
  height: 2rem;
  aspect-ratio: 1;
  position: relative;
  top: 0.3rem;
  left: 0.3rem;
}

.location-content {
  margin-top: 5rem;
  width: 100%;
  height: 100%;
}

.location-content .my-current-location iframe {
  border-radius: 0.8rem;
}

/* Contact Page Let's Work Together Section End */

/* Services Page Style Section Start */
.service-offered-body .services-offer-container {
  margin-top: 5rem;
}

.service-offered-body .services-offer-container {
  padding: 1.4rem 0;
}

.contact-work-content .advertise-photo-content {
  width: 100%;
  height: 100%;
}

.advertise-photo-content .advertise-photo-card {
  margin-top: 5rem;
  width: 100%;
  height: 100%;
}

.advertise-photo-card img {
  width: 100%;
  height: 45rem;
  border-radius: 0.8rem;
}

.work-together-slider-content {
  margin-top: 5rem;
  overflow: hidden;
  background-color: var(--background);
  border-radius: 8px;
  padding: 24px;
}

.work-together-slider-content .work-together-slider {
  display: flex;
  white-space: nowrap;
  gap: 2.4rem;
  align-items: center;
  animation: slider 5s linear infinite;
}

.work-together-slider-content .slider-item a {
  display: inline-block;
  font-size: 4rem;
  font-weight: 500;
  color: var(--light-black);
  line-height: 0.9em;
  position: relative;
  margin: 0 1.5rem;
}

.work-together-slider-content .slider-item a::before {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: var(--light-black);
  border-radius: 50%;
  content: "";
  top: 50%;
  left: -3.2rem;
  transform: translateY(-50%);
}

.slider-item a:hover {
  color: var(--black);
}

.work-together-slider-content:hover .work-together-slider {
  animation-play-state: paused;
}

/* Services Page Style Section End */

/* About me Page Style Section Start */

.available-hire-btn {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--background);
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  line-height: 1.5em;
}

.circle {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: relative;
}

.circle::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(71, 112, 255, 0.3);
  border-radius: 50%;
  animation: active 1s ease-in-out infinite;
}

.about-me-page-body .experience-project-section .experience-project-content {
  margin: 5rem 0;
}

.experience-project-card .number {
  font-size: 4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 0.9em;
}

.scroll-down-content {
  margin-top: -3rem;
  margin-right: 1.8rem;
}

.scroll-down-content .scroll-down-text {
  position: relative;
}

.scroll-down-content .scroll-down-text img {
  height: 10rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinImage 10s linear infinite;
}

.scroll-down-content .down-arrow {
  height: 6rem;
  width: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--white);
}

/* Bootcamp and Intership Section Start */
.bootcamp-intership-card {
  width: 100%;
  height: 100%;
  margin-bottom: 1.8rem;
  background-color: var(--background);
  border-radius: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border: 0.1rem solid transparent;
  transition: all 0.1s ease-out;
}

.company-logo-card {
  display: flex;
  gap: 2rem;
}

.company-description .title {
  font-size: 1.8rem;
}

.company-description .year,
.medal-content .duration {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--paragraph);
}

.project-btn {
  background-color: var(--white);
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 0.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  border: 0;
  transition: all 0.1s ease-out;
  cursor: pointer;
}

.project-btn i,
.project-title-content i {
  transform: rotate(45deg);
}

.bootcamp-intership-card:hover {
  background-color: transparent;
  border: 0.1rem solid var(--border);
}

.bootcamp-intership-card:hover .project-btn {
  background-color: var(--background);
  color: var(--primary-color);
}

.bootcamp-intership-card:hover .company-logo img {
  background-color: var(--background);
}

/* .company-logo-card .company-logo {
} */

.company-logo-card .company-logo img {
  width: 4rem;
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 0.8rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  transition: all 0.1s ease-out;
}

/* Bootcamp and Intership Section End */

/* About me Page Style Section End */

/* Blog page Section Start */

.blog-page-section .main-para {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5em;
}

.blog-post-section .blog-post-content {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 4.8rem;
  flex-wrap: wrap;
}

.blog-post-content .blog-post-card {
  width: 50%;
  height: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
}

.blog-post-images {
  overflow: hidden;
  border-radius: 0.8rem;
  height: 25rem;
}

.blog-post-images img {
  width: 100%;
  height: 25rem;
  border-radius: 0.8rem;
  transition: all 0.5s ease-out;
  object-fit: cover;
  object-position: center;
}

.blog-post-images img:hover {
  scale: 1.1;
}

.blog-title-content .title {
  display: block;
  margin-top: 2rem;
  font-size: 2.4rem;
  transition: all 0.5s ease-out;
  line-height: 1.4em;
}

.blog-post-content .title:hover {
  color: var(--primary-color);
}

.blog-title-content .post-date {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(87, 96, 118, 0.5);
  line-height: 1.4em;
  margin-top: 1.5rem;
}

/* Blog page Section End */

/* Project Page Section Start */
.project-page-section .main-para {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5em;
}

.project-post-section .project-post-content {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 4.8rem;
  flex-wrap: wrap;
}

.project-post-content .project-post-card {
  width: 100%;
  height: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
}

.project-post-images {
  overflow: hidden;
  border-radius: 0.8rem;
  height: 100;
  background-color: var(--background);
  padding: 4rem 4rem 0;
}

.project-post-images img {
  display: block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  transition: all 0.5s ease-out;
  object-fit: cover;
  object-position: center;
}

/* .project-post-images img:hover {
} */

.project-title-content {
  padding: 2rem;
}

.project-title-content .title {
  width: fit-content;
  display: block;
  font-size: 2.4rem;
  line-height: 1.4em;
  transition: all 0.5s ease-out;
  border-bottom: 0.1rem solid transparent;
}

.project-post-content .title:hover {
  color: var(--primary-color);
  border-bottom: 0.1rem solid var(--primary-color);
}

.project-title-content .sub-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--light-black);
}

.project-title-content .visit-site-btn {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1em;
  color: var(--light-black);
}

.project-title-content .visit-site-btn:hover {
  color: var(--primary-color);
}

/* Project Page Section End */

/* Footer Sectio Start */
footer {
  margin-top: 3rem;
}

.footer-section {
  width: 100%;
  height: fit-content;
}

.footer-section .footer-content {
  font-size: 1.4rem;
}

.footer-content .link-btn {
  font-size: 1.4rem;
}

/* Footer Sectio End */



/* User Interactive  */

.copied-mail {
  background-color: var(--black);
  color: var(--white);
  position: absolute;
  bottom: 6rem;
  border-radius: .4rem;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  left: 5rem;
  display: none;
}

/* View Certiificate Content Start */

/* Modal base */
.certificate-modal {
  position: fixed;
  inset: 0;
  display: none;
  pointer-events: none;
  z-index: 9999;
}

/* Dark overlay */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* Modal content area */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #000;
  color: #fff;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn:hover {
  background: #333;
}

/* Image (responsive, remains centered & contained) */
.modal-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}


/* View Certiificate Content End */

/* User Interactive  */





/* Responsive Layout Area Start */

@media (width < 1400px) {
  .container {
    max-width: 133rem;
    margin: 0 5rem;
  }

  .btn {
    font-size: 1.5rem;
    padding: 1.6rem 2rem;
  }

  .grid {
    display: grid;
    gap: 2.4rem;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(35.6rem, 1fr));
  }

  .grid-rows-3 {
    grid-template-rows: repeat(3, minmax(30rem, 1fr));
  }

  /* About Me Section Start */
  .main-content .description-content .socail-media-icon {
    gap: 1rem;
  }

  .description-content .socail-media-icon .icons {
    font-size: 1.8rem;
    width: 6rem;
    height: 6rem;
    border-radius: 0.8rem;
    border: 0.1rem solid var(--border);
    text-align: center;
    line-height: 6rem;
    transition: 0.3s ease-out;
    cursor: pointer;
  }

  /* About Me Section End */

  /* My Expert Area Start */
  .expert-area-section .expert-icons {
    padding: 1.4rem 2.8rem;
    font-size: 2.2rem;
  }

  /* My Expert Area End */

  /* My Recent Projects Start*/
  .recent-projects-card .projects-card {
    width: 100%;
    height: 40%;
    background-color: var(--background);
    border-radius: 0.8rem;
    position: relative;
  }

  .projects-card .project-1 {
    height: 82%;
    width: 82%;
  }

  .projects-card .project-2 {
    width: 78%;
    height: 65%;
  }

  .projects-card .category {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  /* My Recent Projects End*/

  /* Work together Section */
  .send-message input {
    max-width: 30rem;
    width: 100%;
  }
}

@media (width < 1200px) {
  .container {
    max-width: 90rem;
    margin: 0 auto;
  }

  .navbar .navbar-content .navbar-list,
  .navbar .theme-btn {
    display: none;
  }

  .navbar .menu-bar-icon {
    display: block;
  }

  /* Main Content Section Layout */
  .grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
  }

  /* About me Section */
  .main-content .about-me-card .image-content {
    width: 100%;
    height: 55rem;
  }

  .description-content .socail-media-icon .icons {
    font-size: 2.8rem;
    width: 15rem;
    height: 8rem;
    line-height: 8rem;
  }

  .main-content .about-me-card .image-content img {
    width: 54rem;
  }

  .main-para {
    width: 100%;
  }

  /* Project Page Section Start */
  .project-title-content .title {
    font-size: 2rem;
  }

  /* Project Page Section End */

  /* View Certificate Section */
  .modal-content {
    width: 80rem;
  }
}

@media (width < 992px) {
  .container {
    max-width: 70rem;
    margin: 0 auto;
  }

  /* About me Section */
  .main-content .about-me-card .image-content {
    width: 100%;
    height: 40rem;
  }

  .main-content .about-me-card .image-content img {
    width: 39rem;
  }

  .description-content .socail-media-icon .icons {
    font-size: 2.4rem;
    width: 11rem;
    height: 8rem;
    line-height: 8rem;
  }

  /* Service I Offered  Section Start*/
  .services-offer-container {
    height: calc(100% - 15%);
    flex-wrap: wrap;
    gap: 3rem;
    padding: 1.6rem 1.6rem 2.4rem;
  }

  .service-offer-card {
    width: 25.1rem;
    height: 22rem;
    padding: 0 1.2rem;
    flex-direction: column;
    align-items: center;
  }

  .service-offer-card .service-offer-image {
    width: 90%;
    background-color: var(--white);
    padding: 1.6rem 1.6rem 2.4rem;
    border-radius: 0.8rem;
  }

  .service-offer-card .service-offer-image img {
    display: block;
    margin: 0 auto;
    height: 7rem;
    aspect-ratio: 1;
  }

  .service-offer-card .icon-title {
    margin-top: 1.6rem;
  }

  /* Contact Page Let's Work Together Section Start */
  .send-message-container .send-message-content {
    padding: 2.5rem;
  }

  /* Contact Page Let's Work Together Section End */

  /* About Me Page Section Start */
  .main-title-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1rem;
  }

  /* About Me Page Section End */

  /* Blog page Section */

  .blog-title-content .title {
    font-size: 2rem;
  }

  /* View Certificate Section */
  .modal-content {
    width: 60rem;
  }
}

@media (width < 768px) {
  .container {
    max-width: 54rem;
    margin: 0 auto;
  }

  /* About me Section */
  .main-content .about-me-card .image-content {
    width: 100%;
    height: 25rem;
  }

  .main-content .about-me-card .image-content img {
    width: 24rem;
  }

  .description-content .socail-media-icon .icons {
    font-size: 2rem;
    width: 8rem;
    height: 7rem;
    line-height: 7rem;
  }

  /* My Expert Area Section */

  .expert-icons-content {
    margin-top: 2rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }

  .expert-icons-content .expert-icons-card {
    width: 40%;
  }

  .expert-area-section .expert-icons {
    width: 100%;
    background-color: var(--background);
    padding: 1.4rem 3.5rem;
    font-size: 2.2rem;
    border-radius: 0.8rem;
    color: var(--light-black);
    transition: all 0.5s ease-out 0.5;
  }

  .expert-area-section .expert-icons img {
    width: 4rem;
    aspect-ratio: 1;
  }

  /* Service I Offered  Section Start*/
  .services-offer-container {
    height: calc(100% - 15%);
    flex-wrap: wrap;
    gap: 3rem;
    padding: 1.6rem 1.6rem 2.4rem;
  }

  .service-offer-card {
    width: 20.1rem;
    height: 20rem;
    padding: 0 1.2rem;
    flex-direction: column;
    align-items: center;
  }

  .service-offer-card .service-offer-image {
    width: 90%;
    background-color: var(--white);
    padding: 1.6rem 1.6rem 2.4rem;
    border-radius: 0.8rem;
  }

  .service-offer-card .service-offer-image img {
    display: block;
    margin: 0 auto;
    height: 6rem;
    aspect-ratio: 1;
  }

  .service-offer-card .icon-title {
    margin-top: 1.6rem;
  }

  /* Contact Page Let's Work Together Section Start */
  .send-message-content .subject-budget-section,
  .send-message-content .name-email-section {
    display: block;
  }

  .location-content .my-current-location iframe {
    height: 26rem;
  }

  /* Contact Page Let's Work Together Section End */

  /* About Me Page Section Start */
  .experience-project-card {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .experience-project-card .number {
    font-size: 3rem;
  }

  .bootcamp-intership-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .company-logo-card {
    width: 100%;
    display: flex;
    justify-content: center;
  }


  /* About Me Page Section End */

  /* Blog Page Section Start */
  .blog-post-content .blog-post-card {
    width: 100%;
  }

  .blog-post-images {
    height: 30rem;
  }

  .blog-post-images img {
    height: 30rem;
  }

  /* Blog Page Section End */

  /* Project Page Section Start */
  .project-post-images {
    padding: 2rem 2rem 0;
  }

  .project-title-content .title {
    font-size: 1.6rem;
  }

  /* Project Page Section End */

   /* View Certificate Section */
  .modal-content {
    width: 50rem;
  }
}

@media (width < 576px) {
  .container {
    margin: 0 2rem;
  }

  /* About Me Section */

  .description-content .socail-media-icon .icons {
    font-size: 2rem;
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
  }

  /* Service I Offered  Section Start*/
  .services-offer-container {
    height: calc(100% - 15%);
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* padding: 1.6rem 1.6rem 2.4rem; */
  }

  .service-offer-card {
    width: 13rem;
    height: 15rem;
    padding: 0 1.2rem;
    flex-direction: column;
    align-items: center;
  }

  .service-offer-card .service-offer-image img {
    height: 4rem;
  }

  .service-offer-card .icon-title {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }

  .card-title {
    font-size: 2rem;
  }

  .recent-title-card a,
  .services-title-card a {
    font-size: 1.4rem;
  }

  /* Footer Section */
  .footer-content .footer-break {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }

  /* Contact Page Section Start */
  .contact-work-together-section {
    padding: 2.5rem !important;
  }

  .location-content .my-current-location iframe {
    height: 20rem;
  }

  /* Contact Page Section End */

  /* About Page Section Start */

  .bootcamp-intership-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .blog-post-images {
    height: 20rem;
  }

  .blog-post-images img {
    height: 20rem;
  }

  /* About Page Section End */

  /* Project Page Section Start */

  .project-title-content {
    flex-direction: column;
    gap: 1rem;
  }

  /* Project Page Section End */
}

/* Responsive Layout Area End */

/* Animation Section Start */

@keyframes slide-Animation {
  0% {
    transform: translateX(50%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 0.1rem));
  }
}

@keyframes scroll-y-animation {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-100% - 1rem));
  }
}

/* Bg Animation */

.background-shapes .shape-1 {
  position: fixed;
  top: -20%;
  left: -20%;
  z-index: -1;
}

.background-shapes .shape-2 {
  position: fixed;
  bottom: -20%;
  right: -20%;
  z-index: -1;
}

.background-shapes .common-shape {
  animation: rotateAnimation 60s infinite linear;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
    /* Rotates the element 360 degrees */
  }
}

@keyframes spinImage {
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

@keyframes active {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(2.4);
    background-color: transparent;
  }
}

/* Animation Section End */