* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
  background: #F8FAF9;   /* halka grey-white */
  color: #1F2933;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  position: fixed;   /* 🔥 sticky ki jagah fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #2e7d32;
}

.logo span {
  color: #e65100;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #2e7d32;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Home Section */
.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  min-height: 90vh;
  position: relative;
  overflow: hidden; 

  /* NEW Excel + PPT Background */
  background: linear-gradient(
    135deg,
    #E9F5EE 0%,   /* Excel green */
    #FFFFFF 45%,
    #FFF3E6 100% /* PPT orange */
  );
}


.home-content {
  max-width: 550px;
}

.home-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.home-content h1 span {
  color: #2e7d32;
}

.home-content h2 {
  font-size: 26px;
  color: #e65100;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #2e7d32;
  color: #fff;
}

.primary:hover {
  background: #1b5e20;
}

.secondary {
  border: 2px solid #e65100;
  color: #e65100;
}

.secondary:hover {
  background: #e65100;
  color: #fff;
}

/* Image */

.home-image img {
  width: 350px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: floatPhoto 3s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.home-image img:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.25),
    0 0 0 5px rgba(46,125,50,0.25); /* Excel green ring */
}


@keyframes floatPhoto {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}


/* Services Section */
.services-section {
  background: #FFFFFF;
  padding: 90px 20px;
  text-align: center;
}

.section-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2f4f4f;
  margin-bottom: 50px;
  position: relative;
}

/* Premium underline */
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #e65100);
  margin: 12px auto 0;
  border-radius: 2px;
}


.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}


.service-card {
  background: #ffffff;
  border: 2px solid #000; /* green border matching theme */
  border-radius: 15px;
  width: 220px;
  padding: 40px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  .service-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}
}

.service-card h3 {
  font-size: 1.2rem;
  color: #151B54;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Scroll animation: fade up */

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #50C878;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #000; 
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (max width 1024px) */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max width 600px) */
@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  .home {
    flex-direction: column;
    text-align: center;
    padding: 120px 30px 60px;
  }

  .home-content {
    max-width: 100%;
  }

  .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-image img {
    width: 260px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }
}

/* ===== PPT CARD – PREMIUM LOOK ===== */



.ppt-card .service-icon {
  background: #e65100;
}

.ppt-card h3 {
  color: #e65100;
}

.ppt-card:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 30px 50px rgba(230,81,0,0.4);
}

/* PORTFOLIO SECTION – LIGHT THEME */
.portfolio-section {
  background: linear-gradient(
    135deg,
    #E9F5EE 0%,
    #FFFFFF 50%,
    #FFF3E6 100%
  );
  padding: 100px 60px;
}

.portfolio-section .section-title span {
  color: #e65100;
}

/* LAYOUT */
.portfolio-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.portfolio-content {
  max-width: 480px;
}

.project-no {
  font-size: 60px;
  font-weight: 700;
  color: #41A317;
}

.portfolio-content h3 {
  font-size: 32px;
  color: #4E9258;
  margin: 10px 0;
}

.portfolio-content p {
  color: #000;
  line-height: 1.7;
  margin: 15px 0;
}

.project-tech {
  color: #e65100;
  font-weight: 600;
}

/* BUTTONS */
.portfolio-btns {
  margin-top: 25px;
}

.portfolio-btns button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #2e7d32;
  background: transparent;
  color: #2e7d32;
  font-size: 18px;
  cursor: pointer;
  margin-right: 12px;
  transition: 0.3s;
}

.portfolio-btns button:hover {
  background: #2e7d32;
  color: #fff;
}

/* RIGHT IMAGE */
.portfolio-image img {
  width: 420px;
  border-radius: 18px;
  border: 2px solid #000;   /* 👈 BLACK BORDER */
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.portfolio-image img:hover {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .portfolio-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 90px 20px;
  background: linear-gradient(
    135deg,
    #E9F5EE 0%,
    #FFFFFF 50%,
    #FFF3E6 100%
  );
  scroll-margin-top: 90px;
}

.about-box {
  max-width: 1200px;
  margin: auto;
  padding: 0;               
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  background: transparent;  /* ❌ white box hatao */
  border-radius: 0;         /* ❌ rounded look hatao */
  box-shadow: none;         /* ❌ shadow hatao */
}


/* LEFT */
.about-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #2e7d32;
  padding-left: 10px;
}

.about-desc {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
}


.about-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-btn {
  color: #e65100;
  font-weight: 600;
  text-decoration: none;
}



/* IMAGE */
.about-image {
  display: flex;
  align-items: top;
  justify-content: center;
}

.about-image img {
  width: 350px;
  height: 400px;
  animation: floatPhoto 4s ease-in-out infinite;
}

/* RIGHT SERVICES */
.about-services {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-service h4 {
  font-size: 18px;
  color: #2e7d32;
  margin-bottom: 6px;
}

.about-service p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-actions {
    justify-content: center;
  }

  .about-stats {
    justify-content: center;
  }
}

/* ===== ABOUT ACTIONS – PROFESSIONAL ===== */

.about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 8px;   /* 🔥 pehle 25px tha */
}


.about-content {
  display: flex;
  flex-direction: column;
}


/* SOCIAL BAR */
.social-bar {
  display: flex;
  align-items: center;     /* icons vertically center */
  justify-content: center; /* icons horizontally center */
  gap: 14px;
  margin-top: 6px;
  transform: translateY(-8px);
}


.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.10s ease;
  margin: 16px 0px 0px 0px;
}

.social-btn i {
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}


.social-btn img {
  width: 200px;
  height: 46px;
  object-fit: contain;
}

/* Subtle brand colors */
.social-btn.fiverr {
  background: #fff;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    0 0 20px rgba(29,191,115,0.6);
}

.social-btn.instagram {
  background: #c13584;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    0 0 20px rgba(29,191,115,0.6);
}

.social-btn.linkedin {
  background: #0077b5;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    0 0 20px rgba(29,191,115,0.6);
}

.platform-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.platform-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.platform-btn img {
  width: 50px;
  height: auto;
}

/* Hover Effect */
.platform-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}



/* Hover – premium feel */
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35),0 0 18px rgba(0,0,0,0.25);;
}

/* START PROJECT LINK */
.project-link {
  font-size: 15px;
  font-weight: 600;
  color: #e65100;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.project-link span {
  font-size: 18px;
}

.project-link:hover {
  gap: 12px;
  color: #bf360c;
}

/* Fiverr image size fix */
.fiverr-icon {
  width: 20px;
  height: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 90px 20px;
  background: linear-gradient(
    135deg,
    #E9F5EE 0%,
    #FFFFFF 50%,
    #FFF3E6 100%
  );
  overflow-x: hidden;
}

.contact-box {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.contact-content h2 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.contact-content h2 span {
  color: #2e7d32;
  font-style: italic;
  text-decoration: underline;
}

/* EMAIL */
.contact-email {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
}

.contact-email i {
  font-size: 18px;
  color: #2e7d32;
}

.contact-email a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1F2933;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* SOCIAL ICONS */
.contact-social {
  display: flex;
  gap: 18px;
}

.contact-social .social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  margin-left: 0px;
}

.contact-social i {
  font-size: 18px;
  color: #fff;
}

.contact-social img {
  height: 45px;
}

/* Brand colors */
.social-btn.fiverr {
  background: #ffff;
}

.social-btn.instagram {
  background: #c13584;
}

.social-btn.linkedin {
  background: #0077b5;
}

/* Hover */
.contact-social .social-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* RIGHT IMAGE */
.contact-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }
}


.site-footer {
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #000;
  border-top: 1px solid #000;
}
