* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100hv;
   /* background-color: #141F34; */
   background: (0deg, rgb(255, 255, 255) 0%, rgb(240, 235, 227) 100%)

}
:root{
  --primary-color: #000;
  --white-color: #ffff;
  --gradient-color: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(241, 233, 221) 100%) ;
  --second-gradient: linear-gradient(rgb(255, 255, 255) 0%, rgb(234, 219, 196) 100%);
--third-gradient: linear-gradient(rgb(240, 230, 213) 0%, rgb(240, 235, 227) 100%);
--fourth-gradient: #F0EBE3;
  --primary-color: #0b1a2e;
  --accent-color: #29A587;
  --soft-bg: #EEE1CE;
  --highlight: #ECDEC9;

}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  z-index: 1000;
  background: transparent;

}

header.scrolled {
  background: var(--gradient-color);
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #101B2F;
}
.logo p{
  color: var(--accent-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 5px;
}

/* Green UNDERLINE */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

/* normal links */
.nav-links a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 15px;
}

/* arrow */
.arrow {
  font-size: 10px;
  margin-left: 5px;
}

/* dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  min-width: 230px;
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(173, 173, 173, 0.1);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* dropdown items */
.dropdown-menu li {
  padding: 10px 25px;
}

.dropdown-menu li a {
  position: relative;
  color: var(--accent-color);
  text-decoration: none;
  padding-bottom: 4px;
}

.dropdown-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;

  transition: width 0.3s ease;
}

/* hover underline */
.dropdown-menu li a:hover::after {
  width: 100%;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* arrow rotate */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* SCROLL DOWN ARROW (UNCHANGED) */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}


@keyframes arrowBounce {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 0.7;
  }
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 1;
  }
}



/* HERO */
.split-hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gradient-color);
  overflow: hidden;
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--accent-color);
  border-radius: 50%;
  z-index: 0;
}


/* LEFT */
.hero-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.name {
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 20px;
  color: #F3DABA;
}

.statement {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}


.word {
  position: absolute;
  font-size: 64px;
  font-weight: 700;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  z-index: 2;
  letter-spacing: 2px;
}

.word.active {
  opacity: 1;
  transform: translateY(0);
}




.hero-right .dots-top {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 120px;
  opacity: 0.4;
}

.hero-right .dots-bottom {
  position: absolute;
  bottom: 60px;
  left: 80px;
  width: 120px;
  opacity: 0.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  font-size: 24px;
  color: var(--accent-color);
  animation: bounce 1.5s infinite;
  z-index: 3;
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.hero-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
}

/* TOP SMALL TEXT */
.top-line {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--accent-color);
  font-weight: bold;
}

/* MAIN HEADING */
.hero-heading {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 30px;
}

.hero-heading .name {
  font-weight: 700;   
  font-size: 48px;
  color: #F3DABA;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 20px;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 40px;
   
}

/* BUTTON – clean & modern */
.hero-btn {
  position: relative;
  width: fit-content;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 6;
}

.hero-btn:hover {
  background: var(--accent-color);
  color: var(--white-color);
}



.hero-name {
  font-size: 90px;
  font-weight: 800;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Filled part */
.hero-name .fill {
  color: var(--accent-color);              /* green fill */
  text-shadow: 2px 2px 0 #000; /* subtle depth */
}

/* Outline part */
.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
}
.hero-name .outline {
  -webkit-text-stroke: 2px #333;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  display: flex;
  justify-content: center;
  background: var(--second-gradient);
  margin-top: -10%;
}
.hero-heading span{
  background-color: #F3DABA;
  color: #555;
  padding: 2px;
}

.about-container {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
.about-content{
  margin-top: 20%;

}
/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;

}

/* CONTENT */
.about-tag {
  color: var(--accent-color);
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.7;
  margin-bottom: 20px;
  font-weight: bold;

}

.about-content h2 {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: white;
}

.about-desc {
  color: #979797;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 40px;
}

.features ul {
  list-style: none;
}

.features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: var(--primary-color);
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* BUTTON */
.about-btn {
  background: #f5d7b2;
  color: #0b1a33;
  padding: 14px 32px;
  border: none;
  border-radius: 1px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: transparent;
  color: white;
    border: 1px solid  #f5d7b2 ;
}



/* ================= SERVICES SECTION ================= */

.services {
  padding: 20px 120px; 
  background: var(--third-gradient);
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 80px;
margin-top: 20px;
color: var(--accent-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
}



.service-box {
  position: relative;
  padding: 30px;
  overflow: hidden;

}

/* corner base */
.service-box span {
  position: absolute;
opacity: 0;
  transform: scale(0.6);
  transition: all 0.45s cubic-bezier(.22,1,.36,1);
}

/* size reduced */
.service-box span,
.service-box span::after {
  border-radius: 2px;
}

.service-box span {
  position: absolute;
  background: var(--accent-color); /* ✅ missing */
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.45s cubic-bezier(.22,1,.36,1);
}

.tl, .tr, .bl, .br {
  width: 30px;
  height: 2px;
}


/* top-left */
.tl {
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
}
.tl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background: var(--accent-color);
  top: 0;
  left: 0;
}

/* top-right */
.tr {
  top: 0;
  right: 0;
  width: 25px;
  height: 2px;
}
.tr::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
 background: var(--accent-color);
  top: 0;
  right: 0;
}

/* bottom-left */
.bl {
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
}
.bl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
background: var(--accent-color);
  bottom: 0;
  left: 0;
}

/* bottom-right */
.br {
  bottom: 0;
  right: 0;
  width: 25px;
  height: 2px;
}
.br::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
background: var(--accent-color);
  bottom: 0;
  right: 0;
}

.tl::after,
.tr::after,
.bl::after,
.br::after {
  width: 2px;
  height: 30px;
  background: var(--accent-color);
}


.service-box:hover span {
  opacity: 1;
  transform: scale(1);
}


.service-box i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.service-box h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.service-box p {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.8;
  max-width: 320px;
}

.service-tag{
  margin-top: 30px;
}

.footer {
  background: var(--third-gradient);
  color: #5f5f5f;
  font-family: Arial, sans-serif;
  padding: 60px 40px 0;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-box span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #5f5f5f;
}

.contact-box h3 {
  color: var(--accent-color);
  margin-top: 5px;
}

/* Columns */
.footer-col h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.colone{
  margin-left: 40px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}

/* .footer-col ul li a:hover {
  
 
} */


.footer-col ul li a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--accent-color); 
  transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}



/* Contact list */
.contact-list li {
  line-height: 1.8;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.socials {
  margin-bottom: 10px;
}

.socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #888;
  font-size: 14px;
}

.socials a:hover {
  color: var(--accent-color);
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  .footer {
    padding: 40px 20px 0;
  }
}



/* contact page styling */

.contact-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding: 80px;
}

/* LEFT */
.section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-left h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.icon {
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item small {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--accent-color) ;
}

.info-item p {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

/* RIGHT FORM */
.contact-right {
  border: 1px solid var(--accent-color);
  padding: 50px 40px;
}

.contact-right h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-right input,
.contact-right textarea {
  border: none;
  border-bottom: 1px solid var(--accent-color);
  padding: 10px 0;
  font-size: 14px;
  outline: none;
}

.contact-right textarea {
  resize: none;
  height: 90px;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .contact-left h1 {
    font-size: 38px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* projects page css */
.hero{
  width: 100%;
  height: 600px;
  background: var(--gradient-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: url(./images/blogs-section.png);
  background-position: center;
  background-size: cover;
  opacity: 2;
}
.proj{
  font-size: 40px;
  color: var(--accent-color);
}
.port{
  font-size: 30px;
  font-weight: 400;
  color: var(--accent-color);
}

.portfolio {
  padding: 80px 8%;
 color: var(--accent-color);
 background: var(--second-gradient) ;
}

.filters {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
  flex-wrap: wrap;
  margin-top: 30px;

}

.filters li {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 6px;
}

/* hover subtle hint */
.filters li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.filters li:hover::after {
  width: 100%;
}

/* ACTIVE STATE */
.filters li.active::after {
  width: 100%;
}


.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--third-gradient);
}

.project img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project:hover img {
  transform: scale(1.08);
}

.project span {
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  margin: 15px;
}

.project h3 {
  margin: 0 15px 20px;
  font-size: 22px;
  color: var(--primary-color);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.project:hover .overlay {
  opacity: 1;
}

.overlay a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 4px;
}

.project-btn {
  display: block;
  margin: 60px auto 0 auto;
}


.hero-btn.project-btn {
  text-decoration: none; /* remove underline */
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .projects {
    grid-template-columns: 1fr;
  }
}


/* blogs styling */
.blog-section {
  padding: 80px 8%;
  background: var(--gradient-color);
  color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.blog-card {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color:  var(--accent-color) ;
}

.blog-content h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bebebe;
}

.blog-content a {
  margin-top: auto;
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
  border-bottom: 1px solid white;
}



/* BLOG POST LAYOUT */

.blog-post {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  color: #222;
}

.blog-post h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post .intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.blog-post h2 {
  font-size: 28px;
  margin: 60px 0 15px;
  line-height: 1.3;
}

.blog-post p {
  font-size: 16px;
  margin-bottom: 18px;
}

.blog-post img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Better reading on mobile */
@media (max-width: 768px) {
  .blog-post h1 {
    font-size: 32px;
  }

  .blog-post h2 {
    font-size: 24px;
  }
}


/* Contact Form Styles */
.contact-form {
  background: var(--fourth-gradient); /* match your website colors */
  padding: 50px 20px;
  position: relative;
  z-index: 2;
  margin-bottom: -100px; /* negative margin to overlap footer */
 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form h2 {
  text-align: center;
  color: var(--accent-color); /* main text color */
  margin-bottom: 10px;
}

.contact-form p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.contact-form form .input-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: transparent; /* primary button color */
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 12px 25px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: var(--accent-color);
  color: var(--white-color);
}




/* COMMENT SECTION */

.comment-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  border-top: 1px solid #ddd;
}

.comment-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.comment-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.comment-form .form-group {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #000;
}

.comment-form button {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.comment-form button:hover {
  transform: translateY(-2px);
}


/* about section styling */

.about-studio {
  background: var(--gradient-color);
  padding: 80px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  background: var(--second-gradient);
  padding: 20px;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 600;
}

.about-content h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin: 10px 0;
}

.about-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* SERVICE TAGS */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tags a {
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--highlight);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-tags a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
}


.about-me {
  background: var(--gradient-color);
  padding: 100px 10%;
}

.about-me-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.about-img-box {
  position: relative;
  flex: 1;
  width: 100%;
}

.about-img-box img {
  width: 100%;
  border-radius: 50%;
  background: var(--soft-bg);
}

/* EXPERIENCE BADGE */
.exp-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--accent-color);
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exp-badge h3 {
  font-size: 34px;
  margin: 0;
}

.exp-badge span {
  font-size: 14px;
  line-height: 1.2;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 600;
}

.about-content h2 {
  font-size: 48px;
  color: var(--primary-color);
  margin: 15px 0;
}

.about-content h2 span {
  color: var(--accent-color);
}

.about-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--primary-color);
  max-width: 520px;
}

/* INFO ROW */
.about-info {
  display: flex;
  gap: 60px;
  margin-top: 35px;
}

.about-info small {
  font-size: 13px;
  color: var(--accent-color);
}

.about-info p {
  margin: 5px 0 0;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-me-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .exp-badge {
    right: 50%;
    transform: translateX(50%);
  }

  .about-info {
    justify-content: center;
  }
}

/* soft skills */

.soft-skills {
  background: var(--second-gradient);
  padding: 100px 10%;
}

.soft-wrapper {
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}


/* CARDS */
.soft-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.soft-card {
  background: #fff;
  padding: 35px 30px 45px;
  border-radius: 22px;
  position: relative;
}

/* ICON */
.icon-circle {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.soft-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.soft-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--primary-color);
}

/* PROGRESS */
.progress {
  height: 6px;
  background: var(--highlight);
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
}

.progress span {
  height: 100%;
  display: block;
  background: var(--accent-color);
  border-radius: 10px;
}

.soft-card small {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-weight: 600;
  color: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .soft-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .soft-cards {
    grid-template-columns: 1fr;
  }
}



/* section */
.experience {
  background: var(--fourth-gradient);
  padding: 90px 0;
  font-family: "Poppins", sans-serif;
}

.exp-container {
  width: 1100px;
  margin: auto;
  text-align: center;
}

/* headings */
.exp-subtitle {
  display: block;
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px; /* VERY IMPORTANT */
}

.exp-title {
  text-align: center;
  margin-top: 0;
  font-size: 48px;
}


/* timeline layout */
.exp-timeline {
  position: relative;
}

/* vertical dotted line */
.exp-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  border-left: 2px dotted #bfbfbf;
  transform: translateX(-50%);
}

/* row */
.exp-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 60px;
}

/* left text */
.exp-left {
  text-align: right;
  padding-right: 40px;
}

/* right text */
.exp-right {
  text-align: left;
  padding-left: 40px;
}

/* center dot */
.exp-center {
  position: relative;
  display: flex;
  justify-content: center;
}

.circle {
  width: 14px;
  height: 14px;
  background: var(--accent-color);
  border-radius: 50%;
  position: relative;
}

/* outer faded ring like image */
.circle::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  left: -7px;
  top: -7px;
}

/* text styles */
.exp-left h4,
.exp-right h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.exp-left span,
.exp-right span {
  font-size: 14px;
  color: #6b6b6b;
}

.exp-left p,
.exp-right p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .exp-container {
    width: 90%;
  }

  .exp-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .exp-left,
  .exp-right {
    padding: 0;
    text-align: left;
  }

  .exp-center {
    margin: 20px 0;
  }

  .exp-timeline::before {
    left: 20px;
  }
}


.education {
  background: var(--fourth-gradient);
  padding: 90px 0;
  font-family: "Poppins", sans-serif;
}

.edu-container {
  width: 1100px;
  margin: auto;
  text-align: center;
}

.edu-subtitle {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.edu-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 70px;
}

.edu-timeline {
  position: relative;
}

.edu-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  border-left: 2px dotted #bfbfbf;
  transform: translateX(-50%);
}

.edu-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 60px;
}

.edu-left {
  text-align: right;
  padding-right: 40px;
}

.edu-right {
  text-align: left;
  padding-left: 40px;
}

.edu-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.circle {
  width: 14px;
  height: 14px;
  background: var(--accent-color);
  border-radius: 50%;
  position: relative;
}

.circle::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  left: -7px;
  top: -7px;
}

.edu-left h4,
.edu-right h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.edu-left span,
.edu-right span {
  font-size: 14px;
  color: #6b6b6b;
}

.edu-left p,
.edu-right p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .edu-container {
    width: 90%;
  }

  .edu-row {
    grid-template-columns: 1fr;
  }

  .edu-left,
  .edu-right {
    text-align: left;
    padding: 0;
  }

  .edu-center {
    margin: 20px 0;
  }

  .edu-timeline::before {
    left: 20px;
  }
}


.testimonial {
  background: var(--fourth-gradient);
  padding: 90px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.test-container {
  width: 1200px;
  margin: auto;
  text-align: center;
}

/* heading */
.test-subtitle {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: 14px;
}

.test-title {
  font-size: 48px;
  color: var(--primary-color);
  margin: 15px 0 60px;
}

/* slider */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: slideLeft 18s linear infinite;
}

/* animation */
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* card */
.test-card {
  min-width: 360px;
  background: #fff;
  padding: 30px;
  text-align: left;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* header */
.test-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.test-head h4 {
  color: var(--primary-color);
  font-size: 18px;
}

.stars {
  color: #f5b301;
  font-size: 14px;
  letter-spacing: 2px;
}

/* text */
.test-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* user */
.test-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.test-user strong {
  color: var(--primary-color);
  display: block;
}

.test-user span {
  color: #777;
  font-size: 13px;
}

.quote {
  font-size: 42px;
  color: var(--accent-color);
  opacity: 0.3;
}

/* dots */
.dots {
  margin-top: 30px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.dots .active {
  background: var(--accent-color);
}

/* responsive */
@media (max-width: 900px) {
  .test-container {
    width: 90%;
  }

  .test-card {
    min-width: 280px;
  }
}
