@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500&family=Anton&family=Courgette&family=Dancing+Script:wght@400;500&family=Domine:wght@500&family=Gloock&family=Heebo:wght@300&family=Josefin+Sans&family=Julee&family=Kanit:wght@300;500&family=Libre+Baskerville:wght@700&family=Lobster&family=Lora:ital@1&family=Merriweather:wght@300;400&family=Montserrat:wght@200;400&family=Mukta:wght@300&family=Nunito:wght@300;400;500&family=Oswald:wght@200&family=Pacifico&family=Permanent+Marker&family=Quicksand:wght@300;400&family=Raleway:ital,wght@0,200;0,600;1,400&family=Rowdies:wght@300;400;700&family=Satisfy&family=Sedgwick+Ave+Display&display=swap');

*{
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Custom cursor styling */
.custom-cursor {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #6a00ff;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Cursor trail effect */
.cursor-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #6a00ff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

                                                        /*bg banner*/

.gradientAnimation {
    align-items: center;
    justify-content: center;
    background-image: url('img/banner2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 80px;   
}

                                                         /* header*/

.hire-me {
    background-color: #6C5DD3;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease;
    margin-top: -60px;
}

.hireme {
  background-color: #8750F6;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}

.hireme:hover{
  text-decoration: none;
  color: white;
}

.mobile-hire {
    display: none;
}

.hire-me:hover {
    background-color: #8750F6;
}

.navbar {
    height: 80px;
    background: linear-gradient(135deg, #000, #321552);
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 5px 6px -1px rgba(38, 21, 65, 0.8);
}

.mylogo {
    width: 160px;
    margin-top: -50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
     margin-top: -28px;
}

.nav-links li {
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

.nav-links li a {
    color: white;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: rgba(135, 80, 246, 0.5);
    text-decoration: none;
}

/* Burger icon and cross effect */
.burger {
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    margin: 4px;
    transition: all 0.3s ease;
}

.burger.cross .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.cross .line2 {
    opacity: 0;
}

.burger.cross .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.9);
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        padding: 2rem 0;
        transition: right 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .mylogo {
      width: 160px;
      margin-top: -50px;
      margin-left: -30px;
  }

    .hide{
      display: none;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-top: -35px;
        margin-left: 80px;
    }

    .text-right .hire-me {
        display: none;
    }

    .mobile-hire {
        display: block;
        margin-top: 10px;
    }
}

                                                           /* home section*/

.muneeb {
    font-size: 32px;
    font-weight: bold;
    color: white;
    font-family: "Montserrat", sans-serif;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.developer {
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #6C5DD3, #6C4B94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
    animation: slideIn 1.2s ease-in-out forwards;
}

.brief {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1.3s ease-in-out forwards;
}

.download {
    display: inline-block;
    border-radius: 20px;
    padding: 10px 25px;
    text-align: center;
    border: 1px solid #8750F6;
    color: #8750F6;
    transition: all 0.3s ease;
}

.download:hover {
    background-color: #8750F6;
    color: white;
    box-shadow: 0px 4px 10px rgba(135, 80, 246, 0.5);
    text-decoration: none;
}

.image-container1 {
    display: inline-block;
    margin-top: 50px;
    animation: zoomIn 1s ease-in-out forwards;
    margin-left: 80px;
}

.image-container1 img {
    width: 330px;
    height: 330px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid #8750F6;
    transform: rotate(0deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-container1:hover img {
    transform: rotate(5deg);
    border-color: #8750F7;
    cursor: pointer;
}

/* Desktop: Vertical layout */
.social-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
}

/* Line connecting icons */
.social-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8750F6;
    z-index: 1;
}

/* Social icons */
.social-icon-line {
    width: 45px;
    height: 45px;
    border: 2px solid #8750F6;
    border-radius: 50%;
    color: #8750F6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    background-color: #1f2029;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon-line:hover {
    background-color: #8750F6;
    color: white;
    transform: scale(1.1);
}

/* 🔁 Mobile: Horizontal layout with horizontal line */
@media (max-width: 768px) {
    .social-vertical {
        flex-direction: row;
        justify-content: center;
    }

    .social-vertical::before {
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        width: 100%;
        transform: translateY(-50%);
    }

    .social-icon-line {
        margin: 0 8px;
    }
}



/* Counter Styles */
.years {
    font-size: 80px;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    animation: fadeInUp 1.2s ease-in-out forwards;
}

.experience {
    color: white;
    font-weight: 300;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

.counters{
  padding-bottom: 50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsiveness for smaller screens */
@media (max-width: 1200px) {
    .col-md-6 {
        text-align: center;
    }
    .image-container1 img {
        width: 100%;
    }
    .col-md-4 {
        margin-bottom: 20px;
    }
    .download {
      width: 100%;
      text-align: center;
      margin-top: -35px;
      margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .col-md-5 {
        text-align: center;
    }

    .image-container1 img { 
      width: 50%; 
      height: auto; 
      border-radius: 100%; 
      border: 1px solid #8750F6; 
      transform: rotate(0deg); 
      transition: transform 0.3s ease, 
      border-color 0.3s ease; 
    }

    .image-container1 {
    display: inline-block;
    margin-top: 50px;
    animation: zoomIn 1s ease-in-out forwards;
    margin-left: 0;
    margin-top: -15px;
    }

    .social-vertical {
    margin-left: 0;
    }

    .muneeb {
        font-size: 28px;
    }
    .developer {
        font-size: 50px;
    }
    .col-md-4 {
        margin-bottom: 20px;
    }
    .download {
      width: 100%;
      text-align: center;
      margin-top: -35px;
    }
}

@media (max-width: 768px) {
    .muneeb {
        font-size: 24px;
    }
    .developer {
        font-size: 40px;
    }
    .brief {
        font-size: 14px;
    }
    .image-container1 img {
        width: 80%;
    }
    .download {
        width: 100%;
        text-align: center;
        margin-top: -35px;
    }
    .counters {
        padding-left: 0;
        padding-right: 0;
    }

    .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .muneeb {
        font-size: 22px;
    }
    .developer {
        font-size: 36px;
    }
    .brief {
        font-size: 13px;
    }
    .image-container1 img {
        width: 70%;
    }
    .col-md-4 {
        margin-top: 20px;
    }
    .social-icons {
        margin: 0 10px;
        padding: 15px;
    }
    .counters {
        padding-left: 0;
        padding-right: 0;
    }
    .years {
        font-size: 60px;
    }

    .experience {
        font-size: 14px;
    }
    .download {
      width: 100%;
      text-align: center;
      margin-top: -35px;
    }
}

                                                                  /*services*/

#services {
  background-color: #050709;
  padding: 80px 0;
  height: auto;
}

.ser-hea {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.ser-hea,
.ser-sub-hea {
  text-align: left;
}

.ser-sub-hea {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(135deg, #000, #321552);  
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 90%;
  margin-top: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 6px -1px #fff;
}

.icon1 {
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover .icon1 {
  transform: scale(1.1);
}

.img-icon {
  height: 60px;
}

.heading h5 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  margin: 20px 0 10px;
  font-family: "Montserrat", sans-serif;
}

.ser-list {
  margin-top: 15px;
}

.ser-list ol {
  padding-left: 0;
}

.ser-list ol li {
  list-style: none;
  color: #b0b2c3;
  font-size: 15px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.ser-list ol li i {
  color: #00bcd4;
  margin-right: 8px;
}

.ser-list ol li:hover {
  color: #fff;
  transform: translateX(5px);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 768px) {
  .ser-sub-hea {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
  }

  .service-card{
    margin-top: 0px;
  }

  #services{
    margin-bottom: -30px;
  }

}

                                                                   /* edu & expe*/

.edu-expe{
  background-color: #0F0715;
  height: auto;
}

.tab-buttons {
  display: flex;
  justify-content: center; /* This centers the tab buttons */
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 50px;
}

/* Transparent content box */
.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-year-box {
  margin-top: 40px;
  padding: 15px 20px;
  background: rgba(135, 80, 246, 0.1); /* subtle background */
  border: 2px solid #8750F6;
  border-radius: 50px;
  display: inline-block;
  color: #8750F6;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(135, 80, 246, 0.2);
}

.year-text {
  display: block;
}

/* Headings and description */
.edu-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.edu-desc {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

/* Tab styling */
.tab-content {
  display: none;
  padding: 40px 20px;
  background: transparent;
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.tab-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: #8750F6;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease;
}

.tab-btn:hover {
  background: #6b3bd6;
}

.tab-btn.active {
  background: #fff;
  color: #8750F6;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}

/* @media (max-width: 768px){
  .tab-buttons{
    margin-top: -100px;
  }
} */


                                                                    /*portfolio*/

#portfolio{
  background-color: #050709;
  height: auto;  
  padding: 80px 0;
}

.port-hea {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.port-hea,
.port-sub-hea {
  text-align: left;
}

.port-sub-hea {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

.port-row1{
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  background-color: #f9f9f9; /* optional to fill space */
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.plus-icon {
  font-size: 45px;
  color: white;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .plus-icon {
  transform: scale(1.2) rotate(45deg);
  background: rgba(135, 80, 246, 0.1); /* subtle background */
  border: 2px solid #8750F6;
  border-radius: 50px;
  color: #8750F6;
}

.title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title:hover{
  color: #8750F6;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

                                                                  /*skills section*/

#skills{
  background-color: #0F0715;
  height: auto;
  color: white;
  padding: 50px 0;
  text-align: center;
}

                                                                  /*skills section*/

/*.black3{
  background-color: #0F0715;
  height: auto;
  color: white;
  padding: 50px 0;
  text-align: center;
}*/

.skill{
  background: linear-gradient(135deg, #fff, #6C5DD3, #6C4B94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 45px;
}

.skill-box {
  background-color: #2b2b3b;
  border-radius: 20px;
  padding: 20px;
  margin: 15px 0;
  transition: transform 0.3s ease;
}
    
.skill-box:hover {
  transform: translateY(-10px);
  background-color: #2A1454;
  border:  1px solid #7645DA;
  cursor: pointer;
}
    
.skill-box img {
  width: 50px;
  margin-bottom: 10px;
}
    
                                                                  /*contact section*/

.black4 {
  background-color: #050709;
  height: auto;
  padding: 20px 0;
}

.col7 {
  background-color: #140C1C;
  border-radius: 20px;
  padding: 30px;
  margin: 50px auto;
}

.skills, .p1, .form {
  padding: 5px 20px;
}

.skills {
  background: linear-gradient(135deg, #fff, #6C5DD3, #6C4B94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 10px;
}

.p1 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col-half {
  width: 48%;
}

input, textarea, select {
  background-color: #000 !important; /* Ensure black background */
  color: #fff !important; /* Ensure white text */
  border: 1px solid #fff; /* White border */
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Placeholder text styling */
input::placeholder,
textarea::placeholder {
  color: #aaa; /* Light gray placeholder text */
  opacity: 1; /* Ensure placeholder is visible */
}

/* Focus state for better interaction */
input:focus, textarea:focus, select:focus {
  outline: none; /* Remove default outline */
  border-color: #6C4B94; /* Optional: Highlight border on focus */
}

#submit {
  color: white;
  background-color: #6C4B94;
  border-radius: 30px;
  padding: 10px;
  border-color: #6C4B94;
  cursor: pointer;
}

#submit:hover {
  background-color: #321552g;
}

.map {
  margin-top: 50px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .col7, .map {
    margin: 20px 0;
    padding: 20px;
  }

  .col-half {
    width: 100%;
    margin-bottom: 10px;
  }

  .skills {
    font-size: 36px;
    text-align: center;
  }

  .p1 {
    text-align: center;
  }
  
  .map{
    height: auto;
    width: 100%;
  }

}

                                                              /*footer section*/

.footer {
  background-color: #0f0516;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer-logo img {
  width: 120px;
}

.footer-nav a {
  color: white;
  margin: 0 15px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #6C5DD3;
  text-decoration: none;
}
        
.copyright {
  color: #6C5DD3;
  margin-top: 10px;
}

.mubi{
  color: #fff;
  margin-top: 10px;
}

.mubi:hover{
  color: white;
  text-decoration: none;
}