* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= BODY ================= */

body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;

}

/* ================= NAVBAR ================= */

nav {
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 10px;
  left: 2.5%;
  width: 95%;
  z-index: 1000;
  border-radius: 10px;
}

/* ================= LOGO ================= */

.logo img {
  width: 120px;

}

/* ================= MENU ================= */

.navbar {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-size: 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* ================= HOVER ================= */

.navbar a:hover {
  background-color: #00BFFF;
  color: #000;
}

/* ================= ACTIVE STATES ================= */

/* Default active (About, Services, Projects, Blog etc) */
.navbar li.active>a:not(.home-link) {
  background-color: #00BFFF;
  color: #000;
}



/* ================= DROPDOWN ================= */

.arrow {
  margin-left: 5px;
  font-size: 12px;
  transition: 0.3s;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  min-width: 180px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 10px 15px;
}

/* ================= NESTED DROPDOWN ================= */

.nested-dropdown {
  position: relative;
}

.nested-menu {
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
  margin-top: 5px;
}

.nested-dropdown:hover .nested-menu {
  display: block;
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #00BFFF;
  font-size: 26px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00BFFF;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 992px) {
  nav {
    flex-wrap: wrap;
    top: 5px;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .navbar.show {
    display: flex;
  }

  .navbar li {
    text-align: center;
    width: 100%;
  }

  .logo img {
    width: 100px;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.hero {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 96%;
  margin: 150px auto 0px;
}

/* Wrapper */


/* "Hey, I am" */
.intro h2 {
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 0.2em;
  line-height: 1.2;
}

/* Typing Effect */
.typing-container-sharjeel {
  font-size: 2.2em;
  font-weight: bold;
  color: #00BFFF;
  min-height: 1.2em;
  line-height: 1.2;
}

/* Blinking Cursor */
.typing-text-sharjeel::after {
  content: '|';
  display: inline-block;
  animation: blink-cursor-shahab 0.75s step-end infinite;
  margin-left: 5px;
  font-weight: 300;
}

@keyframes blink-cursor-shahab {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ---------------------------------- */
/* RESPONSIVE SETTINGS */
/* ---------------------------------- */

/* Tablets */
@media (max-width: 1024px) {
  .typing-container-sharjeel {
    font-size: 2em;
  }

  .header-section-sharjeel h2 {
    font-size: 1.3em;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .typing-container-sharjeel {
    font-size: 1.8em;
  }

  .header-section-sharjeel h2 {
    font-size: 1.2em;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .typing-container-sharjeel {
    font-size: 1.5em;
  }

  .header-section-sharjeel h2 {
    font-size: 1.1em;
  }
}

.intro :nth-child(3) {
  font-size: 30px;
  margin-top: 10px;
  font-family: serif;
  margin-right: 10px;
  line-height: 140%;
}

.intro :nth-child(4) {
  font-size: 20px;
  margin-top: 20px;
  color: #00BFFF;
}

.btn {
  font-size: 30px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900;
  padding: 10px 20px;
  margin-top: 40px;
  background-color: transparent;
  color: #00BFFF;
  border: 1px solid #00BFFF;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  /* neeche se */
  transition: all 0.7s ease;
}

.btn.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #00BFFF;
  border-radius: 10px;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.btn:hover {
  color: #fff;
}

.btn:hover::before {
  width: 300%;
  height: 500%;
  transform: translate(-50%, -50%) scale(1);
}

.myimg img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  border: 3px solid #00BFFF;
  /* Animation properties */
  transform: translateX(100%);
  opacity: 0;
  animation: slide-in-right 1s ease-out forwards;
}

/* Keyframes for sliding in from right */
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 
/* ========================
   RESPONSIVE STYLES
======================== */

/* Laptops / large tablets */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: row;
    padding: 30px 50px;
    flex-wrap: wrap;
  }


  .intro :nth-child(3) {
    font-size: 20px;
    margin-right: 10px;
  }

  .myimg img {
    width: 300px;
    height: 400px;
    border-radius: 20px;
  }

  .btn {
    font-size: 26px;
    padding: 8px 16px;
    margin-top: 30px;
  }
}

/* Tablets / small screens */
@media (max-width: 768px) {
  .hero {
    flex-wrap: wrap;
  }

  .intro p {
    font-size: 16px;
  }

  .btn {
    font-size: 22px;
    padding: 6px 12px;
    margin-top: 20px;
  }

  .myimg img {
    width: 300px;
    height: 400px;
    margin-top: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 500px) {
  .hero-container {

    flex-wrap: wrap;
  }

  .myimg img {
    width: 300px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .hero {
    flex-wrap: wrap;
  }

  .intro {

    padding-left: 10px;
  }


  .intro p {
    font-size: 14px;
  }

  .btn {
    font-size: 18px;
    padding: 5px 10px;
    margin-top: 35px;
  }

  .myimg img {
    width: 250px;
    height: 350px;
    margin-top: 15px;
  }
}

hr {
  width: 95%;
  margin: 30px auto;
}

.Section1 {
  width: 96%;
  height: 90vh;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

}

.abouttext {
  width: 50%;
  margin-top: 50px;
}

.abouttext h1,
.abouttext p {
  opacity: 0;
  transform: translateX(-60px);
  /* left se */
  transition: all 0.8s ease;
}

/* Animate when visible */
.abouttext h1.fade-left,
.abouttext p.fade-left {
  opacity: 1;
  transform: translateX(0);
}

/* Tumhari existing styling */
.abouttext h1 {
  font-size: 40px;
  color: #00BFFF;
}

.abouttext p {
  font-size: 30px;
  margin-top: 10px;
  font-family: serif;
  line-height: 140%;
}



.aboutimg img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  border: 3px solid #00BFFF;

  /* Fade up animation initial state */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.aboutimg img.fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */

/* Tablets / Medium screens */
@media (max-width: 1024px) {
  .Section1 {
    flex-direction: column;
    height: auto;
    padding: 50px 0;
  }

  .abouttext {
    width: 90%;
    margin-top: 30px;
    text-align: left;
    /* left aligned text */
  }

  .abouttext h1 {
    font-size: 32px;
  }

  .abouttext p {
    font-size: 22px;
  }

  .aboutimg img {
    width: 50%;
    height: auto;

    object-fit: cover;
    margin-top: 20px;
    margin-left: 20%;
  }
}

/* Mobile / Small screens */
@media (max-width: 768px) {
  .Section1 {
    flex-direction: column;
    padding: 30px 10px;
  }

  .abouttext {
    width: 100%;
    margin-top: 0;
  }

  .abouttext h1 {
    font-size: 28px;
  }

  .abouttext p {
    font-size: 18px;
    line-height: 130%;
  }

  .aboutimg img {
    width: 60%;
    height: auto;
    margin-top: 20px;
    margin-left: 5%;

  }
}

/* Extra small screens / very small phones */
@media (max-width: 480px) {
  .abouttext h1 {
    font-size: 24px;
  }

  .abouttext p {
    font-size: 16px;
    line-height: 120%;
  }

  .aboutimg img {
    width: 300px;
    height: 300px;
    align-items: center;
    margin: 20px 0px;
    object-fit: cover;
  }
}


.services {
  padding: 80px 5%;
  text-align: center;
}

.section-titles {
  font-size: 42px;
  color: #00BFFF;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #00BFFF;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.25);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 32px;
  color: #00BFFF;
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  line-height: 150%;
  opacity: 0.9;
}

/* Fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-box {
  opacity: 0;
  /* initially hidden */
  transform: translateY(30px);
  transition: all 0.4s ease;
}

/* jab box viewport me appear ho jaye */
.service-box.visible {
  animation: fadeUp 0.8s forwards;
}

.btn2 {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }
}

.projects {
  padding: 80px 5%;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0;
  /* fade-up initial */
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.project-box.visible {
  animation: fadeUp 0.8s forwards;
}

.project-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.project-box:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 191, 255, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 20px;
}

.project-box:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* Fade-up keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }
}

/* blog section */
/* Body & section styling */
.blog-section {
  padding: 80px 5%;
  text-align: center;
}

.blog-section h2 {
  font-size: 40px;
  color: #00BFFF;
}

.blog-section p {
  margin-top: 5px;
  font-size: 16px;
  opacity: 0.8;
}

/* Blog grid */
.blogs-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Blog post card */
.blog-post {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  cursor: pointer;
}

.blog-post.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image & hover zoom */
.blog-post img {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.blog-post:hover img {
  transform: scale(1.1);
}

/* Titles & text */
.blog-post h3 {
  color: #00BFFF;
  margin-bottom: 10px;
  font-size: 22px;
}

.read-more-link {
  display: inline-block;
  margin-top: 10px;
  color: #00BFFF;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #009acd;
  transform: translateX(5px);
}

.blog-post p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}

.blog-post .post-date {
  font-size: 14px;
  opacity: 0.7;
  margin: 10px 0;
}

/* Blog actions */
.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  margin-top: 10px;
}

.like-btn,
.comment-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  color: #fff;
  transition: all 0.3s ease;
}

.like-btn:hover i,
.comment-btn:hover i {
  transform: scale(1.2);
}

.like-btn.liked i {
  color: red;
}

/* Comment section */
.comment-section {
  display: none;
  margin-top: 15px;
}

.comment-section input {
  padding: 5px;
  width: 60%;
  margin-right: 5px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
}

.comment-section input:focus {
  outline: 2px solid #00BFFF;
}

.comment-section button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #00BFFF;
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.comment-section button:hover {
  background: #009acd;
  transform: scale(1.05);
}

/* Comments list */
.comments-list p {
  margin: 5px 0;
}

.comments-list-wrapper {
  max-height: 200px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comments-list-wrapper.expanded {
  max-height: 1000px;
}

/* Read more button */
.read-more-btn {
  display: none;
  background: none;
  border: none;
  color: #00BFFF;
  cursor: pointer;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #009acd;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 32px;
  }

  .comment-section input {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* testimoial section */
.testimonial-section {
  padding: 80px 5%;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 40px;
  color: #00BFFF;
}

.testimonial-section p {
  font-size: 16px;
  opacity: 0.8;
}

.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

.testimonial-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.testimonial-box i {
  font-size: 30px;
  color: #00BFFF;
  margin-bottom: 15px;
}

.testimonial-box p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial-box h4 {
  color: #00BFFF;
  margin-bottom: 3px;
}

.testimonial-box span {
  font-size: 14px;
  opacity: 0.7;
}

/* contact section */
.contact-cta {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 191, 255, .25), rgba(255, 255, 255, .05));
  opacity: 0;
  transform: translateY(50px);
  transition: .7s ease;
}

.contact-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-cta h2 {
  color: #00BFFF;
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-cta p {
  opacity: .85;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 14px 32px;
  border-radius: 30px;
  border: 2px solid #00BFFF;
  color: #fff;
  text-decoration: none;
  transition: .3s;
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-btn.primary {
  background: #00BFFF;
  color: #000;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 191, 255, .4);
}

/* footer */
.site-footer {
  background: #1a1c36;
  color: #fff;
  padding: 60px 5% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: .7s ease;
}

.footer-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  color: #00BFFF;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: #fff;
  opacity: .8;
  margin-bottom: 6px;
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #00BFFF;
  transform: translateX(5px);
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0, 191, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
  font-size: 16px;
  text-decoration: none;
}

.footer-social .social-icons a:hover {
  background: #00BFFF;
  color: #000;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  opacity: .6;
}

@media(max-width:768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .social-icons {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;

  }

  .social-icons a {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

#scrollTop i {
  font-size: 20px;
}

#scrollTop:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* About page style */
.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  padding: 80px 8%;
  overflow: hidden;
}

.intro-content {
  flex: 1;
}

.intro-content h1 {
  font-size: 3rem;
  color: #00BFFF;
  opacity: 0;
  transform: translateY(30px);
}

.intro-content p {
  font-size: 30px;
  margin: 20px 0;
  max-width: 600px;
  opacity: 0;
  transform: translateX(-40px);
}

.intro-image {
  flex: 1;
  text-align: right;
  opacity: 0;
  transform: translateX(120px);
}

.intro-image img {
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 123, 255, .3);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #00BFFF;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

/* ===== SKILLS ===== */
.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.skill {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, .25);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);

}

.skill,
.exp-box,
.edu-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.skill:hover,
.exp-box:hover,
.edu-card:hover {
  border-color: #00BFFF;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.45);
}

.skill i {
  font-size: 2.2rem;
  color: #00BFFF;
}

.skill h4 {
  margin: 10px 0 6px;
}

.skill small {
  color: #00BFFF;
}

/* ===== EXPERIENCE ===== */
.exp-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #00BFFF;
  border-radius: 10px 5px 5px 10px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, .2);
  opacity: 0;
  transform: translateX(-40px);
}

/* ===== EDUCATION ===== */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.edu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s ease;
  text-decoration: none;
}

/* ===== ANIMATION ACTIVE ===== */
.show {
  opacity: 1 !important;
  transform: none !important;
  transition: 0.8s ease;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .intro-section {
    flex-direction: column;
  }



  .intro-image img {
    margin-top: 20px;
  }
}

@media(max-width:700px) {
  .intro-section {
    flex-direction: column;
  }

  .intro-content h1 {
    font-size: 30px;
  }

  .intro-content p {
    font-size: 20px;
  }


  .intro-image img {
    max-width: 300px;
    margin-top: 20px;
  }
}

@media(max-width:500px) {
  .intro-image img {
    width: 250px;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 10%;
  margin-top: 120px;

  gap: 50px;
  flex-wrap: wrap-reverse;
}

.services-text {
  flex: 1;
  max-width: 500px;
}

.services-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00BFFF;
}

.services-text p {
  font-size: 25px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ccc;
}

.services-text .quote-btn {
  background: #00BFFF;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.services-text .quote-btn:hover {
  background: #009acd;
}

/* Image */
.services-img {
  flex: 1;
  width: 800px;
  overflow: hidden;
}

.services-img img {
  width: 550px;

  border-radius: 12px;
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Image visible class */
.services-img img.visible {
  opacity: 1;
  transform: translateX(0);
}



/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .services-section {
    flex-direction: column;
    padding: 30px 5%;
    gap: 30px;
    margin-top: 120px;
  }

  .services-img img {
    width: 100%;

  }

  .services-text,
  .services-img {
    max-width: 100%;

  }
}

@media(max-width: 500px) {
  .services-text h1 {
    font-size: 30px;
  }

  .services-text p {
    font-size: 20px;
  }
}

/* web tree */


.tree-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 30px 15px;
  text-align: center;
}

.tree-wrapper h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #00BFFF;
}

.tree-wrapper p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.tree-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= NODES ================= */

.node {
  position: relative;
  z-index: 2;
  /* cards above lines */
  background: rgba(20, 25, 35, 0.95);
  border-radius: 10px 5px 5px 10px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, .2);
  border: 1px solid rgba(0, 191, 255, 0.3);
  text-align: center;
  transition: .3s;
  cursor: pointer;

  width: 180px;
  padding: 10px 12px;
  font-size: 14px;
}

.node i {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #00BFFF;
}

.node:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .3);
  border-color: #00BFFF;
}

/* ================= CHILDREN ================= */

.children {
  display: flex;
  flex-wrap: wrap;
  /* wrapping allowed */
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* ================= SVG LINES ================= */

svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

path {
  stroke: #00BFFF;
  stroke-width: 2;
  fill: none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {
  .node {
    width: 130px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .node i {
    font-size: 15px;
    margin-bottom: 4px;
  }
}

@media(max-width:480px) {
  .node {
    width: 110px;
    padding: 6px 8px;
    font-size: 11px;
  }
}

/* Website Development Process */

.process-tree-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 15px;
  text-align: center;
}

.process-tree-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00BFFF;
  /* tumhara primary blue */
}

.process-tree-wrapper p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= TREE ================= */

.process-tree {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= NODE ================= */

.process-node {
  position: relative;
  z-index: 2;
  background: rgba(20, 25, 35, 0.95);
  border-radius: 10px 5px 5px 10px;
  border: 1px solid rgba(0, 191, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 191, 255, .15);
  text-align: center;
  cursor: pointer;
  transition: .3s;

  width: 180px;
  padding: 12px;
  font-size: 14px;
  color: #fff;
}

.process-node i {
  display: block;
  font-size: 18px;
  color: #00BFFF;
  margin-bottom: 6px;
}

.process-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 191, 255, .3);
  border-color: #00BFFF;
}

/* ================= CHILDREN ================= */

.process-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 45px;
}

/* ================= SVG LINES ================= */

.process-tree svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.process-tree path {
  stroke: #00BFFF;
  stroke-width: 2;
  fill: none;
  opacity: .8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {
  .process-node {
    width: 130px;
    font-size: 12px;
    padding: 10px;
  }

  .process-node i {
    font-size: 15px;
  }
}

@media(max-width:480px) {
  .process-node {
    width: 110px;
    font-size: 11px;
    padding: 8px;
  }
}

/* Website Types / Services */
.services-tree-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 15px;
  text-align: center;
}

.services-tree-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00BFFF;
}

.services-tree-wrapper p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= TREE ================= */

.services-tree {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= NODE ================= */

.services-node {
  position: relative;
  z-index: 2;
  background: rgba(20, 25, 35, 0.95);
  border-radius: 10px 5px 5px 10px;
  border: 1px solid rgba(0, 191, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 191, 255, .15);
  text-align: center;
  cursor: pointer;
  transition: .3s;

  width: 180px;
  padding: 12px;
  font-size: 14px;
  color: #fff;
}

.services-node i {
  display: block;
  font-size: 18px;
  color: #00BFFF;
  margin-bottom: 6px;
}

.services-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 191, 255, .3);
  border-color: #00BFFF;
}

/* ================= CHILDREN ================= */

.services-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 45px;
}

/* ================= SVG LINES ================= */

.services-tree svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.services-tree path {
  stroke: #00BFFF;
  stroke-width: 2;
  fill: none;
  opacity: .8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {
  .services-node {
    width: 130px;
    font-size: 12px;
    padding: 10px;
  }

  .services-node i {
    font-size: 15px;
  }
}

@media(max-width:480px) {
  .services-node {
    width: 110px;
    font-size: 11px;
    padding: 8px;
  }
}

/* Project Page style  */
/* ================= HERO SECTION ================= */
.projects-hero {
  max-width: 96%;
  margin: 120px auto 0px;
  padding: 100px 15px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  flex-wrap: wrap;
}

.projects-hero-text {
  flex: 1;
  min-width: 280px;
}

.projects-hero-text h1 {
  font-size: 36px;
  color: #00BFFF;
  margin-bottom: 20px;
}

.projects-hero-text p {
  font-size: 25px;
  line-height: 1.6;
  color: #b5b5b5;
  margin-bottom: 25px;
}



/* ================= IMAGE ================= */
.projects-hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;

  /* Initial position for animation */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.projects-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
  transition: 0.3s;
}

.projects-hero-image img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .projects-hero {
    flex-direction: column;
    margin-top: 60px;
  }

  .projects-hero-text,
  .projects-hero-image {
    flex: unset;
  }

  .projects-hero-text {
    text-align: start;
  }

  .projects-hero-text h1 {
    font-size: 30px;
  }

  .projects-hero-text p {
    font-size: 20px;
  }
}

/* status section */

/* ================= STATS SECTION ================= */
.stats-section {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  padding: 0px 20px;
}

.stats-section.show {
  opacity: 1;
  transform: translateY(0);
}

.stat {
  flex: 1;
  min-width: 200px;
  background: rgba(20, 25, 35, 0.9);
  padding: 30px 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.2);
  transition: 0.3s;
}

.stat i {
  font-size: 30px;
  color: #00BFFF;
  margin-bottom: 12px;
}

.stat .number {
  font-size: 28px;
  color: #00BFFF;
  margin-bottom: 8px;
  display: block;
}

.stat .label {
  font-size: 14px;
  color: #b5b5b5;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .projects-hero {
    flex-direction: column;
    text-align: center;
  }

  .projects-hero-text,
  .projects-hero-image {
    flex: unset;
  }

  .projects-hero-text h1 {
    font-size: 28px;
  }

  .start {
    width: 180px;
  }

  .projects-hero-text p {
    font-size: 15px;
  }

  .stats-section {
    gap: 20px;
  }

  .stat .number {
    font-size: 24px;
  }
}

/* ========== PROJECTS SECTION STYLES ========== */
.projects-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 15px;
  text-align: center;
}

.projects-section h2 {
  font-size: 32px;
  color: #00BFFF;
  margin-bottom: 10px;
}

.projects-section p {
  font-size: 16px;
  color: #b5b5b5;
  margin-bottom: 40px;
}

/* Filter Buttons */
.filters {
  margin-bottom: 30px;
}

.filter-btn {
  background: rgba(0, 191, 255, 0.2);
  color: #00BFFF;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #00BFFF;
  color: #fff;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Project Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.4);
}

.project-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s;
  text-align: left;
}

.project-card:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  margin: 0 0 5px 0;
  color: #00BFFF;
}

.overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}

.overlay a {
  display: inline-block;
  padding: 8px 15px;
  background: #00BFFF;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.overlay a:hover {
  background: #0096d6;
}

/* Responsive */
@media(max-width:768px) {
  .overlay {
    text-align: center;
    padding: 15px;
  }

  .overlay a {
    font-size: 13px;
  }
}

/* blog page style */


/* ================= HEADER SECTION ================= */
.blog-header {
  max-width: 1100px;
  margin: auto;
  padding: 150px 15px 40px;
  text-align: center;
}

.blog-header h1 {
  font-size: 36px;
  color: #00BFFF;
}

.blog-header p {
  color: #aaa;
  max-width: 700px;
  margin: 10px auto 0;
}

/* ================= SEARCH BOX ================= */
.search-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.search-box input {
  width: 280px;
  padding: 12px;
  background: #111;
  border: 1px solid #00BFFF;
  color: #fff;
  border-radius: 6px;
}

.search-box button {
  padding: 12px 20px;
  background: #00BFFF;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #111;
  border: 1px solid rgba(0, 191, 255, 0.4);
  border-top: none;
  display: none;
  z-index: 10;
}

.search-suggestions div {
  padding: 10px 12px;
  cursor: pointer;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-suggestions div:hover {
  background: #00BFFF;
  color: #fff;
}

/* ================= BLOG GRID CONTAINER ================= */
.blog-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= BLOG POST CARD ================= */
.blog-post {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  cursor: pointer;
}

.blog-post.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- IMAGE ----- */
.blog-post img {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.blog-post:hover img {
  transform: scale(1.1);
}

/* ----- TITLE & DESCRIPTION ----- */
.blog-post h3 {
  color: #00BFFF;
  margin-bottom: 10px;
  font-size: 22px;
}

.blog-post p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ----- READ MORE LINK ----- */
.read-more-link {
  display: inline-block;
  margin-top: 10px;
  color: #00BFFF;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #009acd;
  transform: translateX(5px);
}

/* ----- POST DATE ----- */
.post-date {
  font-size: 14px;
  opacity: 0.7;
  margin: 10px 0;
}

/* ================= BLOG ACTION BUTTONS ================= */
.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  margin-top: 10px;
}

.like-btn,
.comment-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  color: #fff;
  transition: all 0.3s ease;
}

.like-btn:hover i,
.comment-btn:hover i {
  transform: scale(1.2);
}

.like-btn.liked i {
  color: red;
  /* Heart turns red when liked */
}

/* ================= COMMENT SECTION ================= */
.comment-section {
  display: none;
  /* Hidden initially, toggle with JS */
  margin-top: 15px;
}

.comment-section input {
  padding: 5px;
  width: 60%;
  margin-right: 5px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
}

.comment-section input:focus {
  outline: 2px solid #00BFFF;
}

.comment-section button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #00BFFF;
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.comment-section button:hover {
  background: #009acd;
  transform: scale(1.05);
}

/* ----- COMMENTS LIST ----- */
.comments-list p {
  margin: 5px 0;
}

.comments-list-wrapper {
  max-height: 200px;
  /* Limit visible comments */
  overflow: hidden;
  transition: all 0.3s ease;
}

.comments-list-wrapper.expanded {
  max-height: 1000px;
  /* Show all comments when expanded */
}

/* ----- READ MORE COMMENTS BUTTON ----- */
.read-more-btn {
  display: none;
  background: none;
  border: none;
  color: #00BFFF;
  cursor: pointer;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #009acd;
}

/* ================= PAGINATION ================= */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #00BFFF;
  background: transparent;
  color: #00BFFF;
  cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
  background: #00BFFF;
  color: #fff;
}

/* ================= RESPONSIVE STYLES ================= */
@media(max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header h1 {
    font-size: 28px;
  }

  .comment-section input {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Testimonial */
/* HERO */
.hero-section {
  text-align: center;
  padding: 150px 20px 50px;
}

.hero-section h1 {
  font-size: 40px;
  color: #00BFFF;
}

.hero-section p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 700px;
  margin: 10px auto;
}

.hero-section button {
  margin-top: 20px;
  padding: 12px 30px;
  background: #00BFFF;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-section button:hover {
  background: #009acd;
  transform: scale(1.05);
}

@media(max-width: 576px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .hero-section p {
    font-size: 15px;
  }
}

/* TESTIMONIAL CARDS */
/* CUSTOM TESTIMONIAL CARDS */
.custom-testimonial-grid {
  max-width: 1200px;
  margin: 50px auto 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 20px;
}

.custom-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

.custom-testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.custom-testimonial-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.custom-testimonial-card h4 {
  color: #00BFFF;
  margin-bottom: 3px;
}

.custom-testimonial-card span {
  font-size: 14px;
  opacity: 0.7;
}

.custom-testimonial-card.big {
  grid-column: span 2;
  font-size: 18px;
  padding: 35px;
}

/* CLIENT FEEDBACK */
.client-feedback {
  max-width: 900px;
  margin: 50px auto 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 20px;
  text-align: center;
}

.client-feedback h3 {
  color: #00BFFF;
  margin-bottom: 10px;
}

.add-feedback-label {
  color: #00BFFF;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
  display: block;
  text-align: center;
}

/* COMMENT */
.comment {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left;
}

.comment .rating {
  color: #ffbf00;
  font-size: 18px;
  margin-top: 5px;
}

/* ADD NEW COMMENT */
.new-comment {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px auto 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

.new-comment input,
.new-comment textarea,
.new-comment select {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.new-comment input:focus,
.new-comment textarea:focus,
.new-comment select:focus {
  outline: none;
  border: 2px solid #00BFFF;
}

.new-comment button {
  width: 160px;
  padding: 10px;
  border: none;
  border-radius: 25px;
  background: #00BFFF;
  color: #fff;
  cursor: pointer;
  align-self: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.new-comment button:hover {
  background: #009acd;
  transform: scale(1.05);
}

/* SEE MORE */
#seeMoreBtn {
  display: block;
  margin: 10px auto 20px;
  background: #00BFFF;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

#seeMoreBtn:hover {
  background: #009acd;
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE FIX (SAFE)
   ========================= */

/* Tablet */
@media (max-width: 992px) {
  .custom-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-testimonial-card.big {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .custom-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .custom-testimonial-card.big {
    grid-column: span 1;
  }
}


/* contact page style */
.page-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

/* ================= HEADER ================= */
.page-header {
  text-align: center;
  margin: 120px 0px 30px 0px;
}

.page-header__title {
  font-size: 2.7rem;
  color: #00BFFF;
}

.page-header__text {
  max-width: 750px;
  margin: auto;
  opacity: .85;
  line-height: 1.6;
}

/* ================= LAYOUT ================= */
.contact-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* ================= CARDS ================= */
.card {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.06);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 191, 255, .25);
}

/* ================= FORM ================= */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 255, .35);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: #00BFFF;
}

/* ================= CUSTOM SELECT ================= */
.select-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.select-box {
  border: 1px solid rgba(0, 191, 255, .35);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.select-box__value::after {
  content: "▼";
  float: right;
}

.select-box__options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #0d0f24;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

.select-box.is-open .select-box__options {
  display: block;
}

.select-box__option {
  padding: 12px 15px;
}

.select-box__option:hover {
  background: rgba(0, 191, 255, .25);
}

/* ================= BUTTON ================= */
.btn-primary {
  padding: 16px;
  width: 100%;
  background: #00BFFF;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0095d6;
}

/* ================= INFO ================= */
.info-title {
  color: #00BFFF;
  margin-top: 0;
}

.info-text {
  opacity: .9;
  line-height: 1.6;
}

.skill-badges {
  margin-top: 20px;
}

.skill-badges span {
  display: inline-block;
  background: rgba(0, 191, 255, .15);
  padding: 8px 14px;
  border-radius: 20px;
  margin: 6px 6px 0 0;
  font-size: .9rem;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
  .contact-layout {
    flex-direction: column;
  }
}

@media(max-width:900px) {

  .page-header__title {
    font-size: 1.7rem;
  }
}