/* Lato Regular */
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.woff2') format('woff2'),
    url('fonts/Lato-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Lato Bold */
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.woff2') format('woff2'),
    url('fonts/Lato-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Lato Italic */
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Italic.woff2') format('woff2'),
    url('fonts/Lato-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}











@font-face {
  font-family: 'Forma DJR Display';
  src: url('fonts/forma-djr-display.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}








.thumb {
  width: 100%;
  height: 250px;
  /* fixed height */
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  /* optional */
  background: #1a1a1a;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures image fills the box without distortion */
  display: block;
}




.blog-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  cursor: grab;

  scrollbar-width: none;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* Card width responsive */
.blog-slider .card {
  flex: 0 0 calc(33.33% - 20px);
  /* 3 cards per row on large screens */
  min-width: 300px;
}

/* Tablet (2 cards visible) */
@media (max-width: 992px) {
  .blog-slider .card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile (1 card visible) */
@media (max-width: 600px) {
  .blog-slider .card {
    flex: 0 0 calc(100% - 20px);
  }
}


.blog-slider {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* smooth snapping */
}

.blog-slider .card {
  scroll-snap-align: start;
}

.blog-slider {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: grab;
}

.blog-slider:active {
  cursor: grabbing;
}




.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  background: #000;
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}

.arrow:hover {
  opacity: 1;
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}

/* Parent should be relative */
section {
  position: relative;
}

.see-all-wrapper {
  text-align: center;
  margin-top: 4%;
}

.see-all-btn {
  background: #ff6200;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  border: 2px solid #ff6200;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.see-all-btn:hover {
  background: transparent;
  color: #ff6200;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
}









/* New Css for updated sections */





/* ------------------------------
   PIXEL-PERFECT HERO SECTION
------------------------------ */

.pp-hero-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.pp-hero-container {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* LEFT COLUMN - EXACT VALUES FROM REFERENCE */
.pp-hero-left {
  width: 50%;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  right: 0px;
  z-index: 10;
  padding-right: 100px;
}

.pp-hero-name {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.pp-hero-orange-line {
  width: 150%;
  /* long orange line */
  height: 5px;
  background: #ff6b35;
  position: relative;
  margin-bottom: 50px;
}

/* HUGE TITLE - EXACT */
.pp-hero-title {
  font-size: 100px;
  /* pixel-perfect size */
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-align: right;
  width: 150%;
}

/* .pp-hero-title span {
    display: block;
} */

/* RIGHT COLUMN */
.pp-hero-right {
  width: 50%;
}

.pp-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* exact crop */
}

/* ------------------------------
   MOBILE RESPONSIVE
------------------------------ */
@media (max-width: 900px) {

  .pp-hero-container {
    flex-direction: column;
    height: auto;
  }

  .pp-hero-left,
  .pp-hero-right {
    width: 100%;
  }

  .pp-hero-left {
    padding: 60px 30px;
    text-align: center;
  }

  .pp-hero-right {
    order: -1;
  }

  .pp-hero-name {
    font-size: 20px;
  }

  .pp-hero-orange-line {
    width: 90%;
    margin-bottom: 40px;
  }

  .pp-hero-title {
    font-size: 48px;
    line-height: 1.1;
    width: 100%;
  }

  .pp-hero-right img {
    height: auto;
  }

  .pp-hero-orange-line {
    width: 100%;
    /* long orange line */
    height: 5px;
    background: #ff6b35;
    position: relative;
    margin-bottom: 50px;
  }

  .pp-hero-title span {
    display: block;
    text-align: center;
  }

}

@media (max-width: 1290px) {

  .pp-hero-title {

    text-align: left !important;

  }

}


.services-intro {
  width: 100%;
}


.orange-line-1 {
  width: 250px;
  height: 4px;
  background: #ff6b35;
  position: relative;
  margin-bottom: 20px;
}




















/* Second Section at home page */























.bio-container {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  gap: 0px;
  align-items: stretch; /* stretch items to equal height */
  padding: 0;
  height: auto; /* remove fixed height */
}

.bio-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 5;
  position: relative;
  overflow: hidden;
}

.bio-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
  display: block;
}

.bio-text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center text content */
  background-color: white;
}


.bio-text {
  max-width: 50%;
  padding-left: 8%;
}


.head {
  font-size: 55px;
  font-weight: 900;
  color: #222;
  margin-right: 14.4%;
}

.bio-underline {
  width: 66%;
  height: 4px;
  background: #ff6200;
  margin-bottom: 30px;
  font-size: 55px;
}

.bio-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 20px;
}

.highlight-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.highlight-link:hover {
  text-decoration: underline;
}

.new-heading {
  display: flex;
  flex-direction: column;
  /* Keep them on top of each other */
  align-items: flex-end;
}

.paragraph-div {
  padding-right: 17%;
  text-align: justify;
}

.blog-heading-last {
  padding: 5%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .bio-container {
    flex-direction: column;
    height: auto;
    gap: 30px;
  }


  .bio-image img {
    max-width: 100%;
    width: 100%;
    max-height: 600px;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  .head {
    font-size: 55px;
    font-weight: 900;
    color: #222;
    margin-right: 0px;
  }


  .new-heading {
    display: block;
    flex-direction: none;
    align-items: none;
    text-align: center;
  }



  .bio-underline {
    width: 50%;
    height: 4px;
    background: #ff6200;
    margin-bottom: 30px;
  }




  .bio-image {
    max-width: 100%;
    max-height: 50vh;
  }

  .bio-text {
    max-width: 100%;
  }

  .bio-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .bio-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .bio-text p {
    font-size: 16px;
    text-align: center;
  }


}


@media (max-width: 1180px) {

  .bio-text p {
    font-size: 16px;
    text-align: justify;
  }

  .head {
    font-size: 28px;
  }

  .services-intro {
    width: 100%;
  }


  .orange-line-1 {
    width: 127px;
    height: 4px;
    background: #ff6b35;
    position: relative;
    margin-bottom: 20px;
  }




}




@media (max-width: 1017px) {

  .paragraph-div {
    padding-right: 9%;
  }


  .bio-text {
    padding-left: 3%;
  }

}







@media (max-width: 930px) {

  .paragraph-div {
    padding-right: 6%;
  }


  .bio-text {
    padding-left: 2%;
  }

}


































/* Contact Page CSS */



/* General Styles */
body {
  margin: 0;
  font-family: 'Lato';
  background: #111;
  color: #fff;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
  /* increased height */
  gap: 30px;
  min-height: 100vh;
  /* full viewport height */
}

.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.orange-line {
  width: 145%;
  height: 6px;
  /* thicker */
  background: #ff6200;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 110px;
  font-weight: bold;
  margin: 34 0 20px 0 !important;
}

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

.social-icons a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.contact-name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-email {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
  justify-content: center;
}

.get-in-touch-btn {
  background: #ff6200;
  color: #fff;
  border: none;
  padding: 12px 30px;
  /* smaller than before */
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 23%;
  transition: 0.3s;
  height: 76px;
  border-radius: 40px;
}

.get-in-touch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 98, 0, 0.5);
}

.contact-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  /* or set a fixed height, e.g., 500px or 100vh */
  overflow: hidden;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* covers entire div */
  object-position: center;
  border-radius: 0;
  /* remove if you want full image fill */
  display: block;
}


/* Overlap Orange Line on Image */
.contact-left .orange-line {
  margin-bottom: 20px;
}

.next-div {
  padding: 11%;
  padding-top: 19%;
}


/* Responsive */
@media (max-width: 900px) {

  .contact-left {
    z-index: 3;
    /* above image */
  }

  .contact-section {
    flex-direction: column;
    text-align: center;
    padding: 0px 0px;
  }

  .orange-line {
    margin: 0 auto 20px auto;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-right img {
    height: auto;
    /* maintain aspect ratio */
    width: 100%;
    max-width: 100%;
  }

  .orange-line {
    width: 100%;
  }

  .get-in-touch-btn {
    background: #ff6200;
    color: #fff;
    border: none;
    padding: 12px 30px;
    /* smaller than before */
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 8%;
    transition: 0.3s;
    height: 76px;
    border-radius: 40px;
  }



  .contact-title {
    font-size: 80px;
    font-weight: bold;
    margin: 34 0 20px 0 !important;
  }

  /* Contact Section */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    /* increased height */
    gap: 10px;
    min-height: 100vh;
    /* full viewport height */
  }


  .next-div {
    padding: 8%;
    padding-top: 13%;
  }


  .contact-right {
    min-height: 400px;
    /* prevent image from becoming too small */
    margin: 20px 0;
    /* standard spacing from top/bottom */
  }

  .contact-right img {
    height: 100%;
    /* fill div completely */
    width: 100%;
  }


}



@media (max-width: 750px) {



  .contact-title {
    font-size: 50px;
    font-weight: bold;
    margin: 34 0 20px 0 !important;
  }

  .next-div {
    padding: 7%;
    padding-top: 13%;
  }



  .next-div {
    padding: 5%;
    padding-top: 9%;
  }




  .contact-right {

    height: 30vh;
    /* or set a fixed height, e.g., 500px or 100vh */

  }

  .get-in-touch-btn {

    padding: 8px 30px;
    font-size: 12px;
    border-radius: 30px;
    margin-top: 6%;
    transition: 0.3s;
    height: 60px;
    border-radius: 40px;
  }


}


@media (max-width: 500px) {



  .contact-title {
    font-size: 30px;
    font-weight: bold;
    margin: 34 0 20px 0 !important;
  }


  .next-div {
    padding: 3%;
    padding-top: 8%;
  }


  .contact-left {

    min-width: 300px;

  }




  .contact-right {
    min-height: 300px;
  }




  .get-in-touch-btn {

    padding: 8px 20px;
    font-size: 10px;
    border-radius: 30px;
    margin-top: 4%;
    transition: 0.3s;
    height: 40px;
    border-radius: 40px;
  }





}



@media (max-width: 400px) {


  .next-div {
    padding: 2px;
    padding-top: 0%;
  }

  .orange-line {
    margin: 0 auto 0px auto;
  }


  .contact-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .contact-email {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    justify-content: center;
  }




  .get-in-touch-btn {

    padding: 8px 20px;
    font-size: 10px;
    border-radius: 30px;
    margin-top: 4%;
    transition: 0.3s;
    height: 40px;
    border-radius: 40px;
  }



}

/* Popup Styles */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #222;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.popup-content .close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}

.popup-content form input,
.popup-content form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
}

.popup-content form textarea {
  resize: vertical;
  min-height: 100px;
}

.popup-content form button {
  background: #ff6200;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
}































/* Section 2 */










.bio-section2 {
  width: 100%;
  background: transparent;
  /* light gray */
  padding: 0px 0;
  box-sizing: border-box;
  height: auto;
}

.bio-container2 {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  gap: 0px;
  align-items: center;
  padding: 0 0px;
}

.bio-image2 {
  width: 100%;
  height: auto;
  max-width: 92%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  /* adjust as you like */
}

.bio-image2 img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-text2 {
  max-width: 50%;
  padding-left: 2%;
}


.head2 {
  font-size: 55px;
  font-weight: 900;
  color: white;
  margin-right: 14.4%;
}

.bio-underline2 {
  width: 29%;
  height: 4px;
  background: #ff6200;
  margin-bottom: 30px;
  font-size: 55px;
}


.blog-underline {
  width: 330px;
  height: 4px;
  background: #ff6200;
  margin-bottom: 0px;
  margin-top: 15px;
  font-size: 55px;
}

.bio-text2 p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  margin-bottom: 20px;
}

.highlight-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.highlight-link:hover {
  text-decoration: underline;
}

.new-heading2 {
  display: flex;
  flex-direction: column;
  /* Keep them on top of each other */
  align-items: flex-start;
}

.paragraph-div2 {
  padding-right: 17%;
  text-align: justify;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .bio-container2 {
    flex-direction: column;
    height: auto;
    gap: 30px;
  }


  .bio-image2 img {
    max-width: 100%;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
  }


  .head2 {
    font-size: 55px;
    font-weight: 900;
    color: white;
    margin-right: 0px;
  }


  .new-heading2 {
    display: block;
    flex-direction: none;
    align-items: none;
    text-align: center;
  }



  .bio-underline2 {
    width: 50%;
    height: 4px;
    background: #ff6200;
    margin-bottom: 30px;
  }




  .bio-image2 {
    max-width: 100%;
    max-height: 50vh;
  }

  .bio-text2 {
    max-width: 100%;
  }

  .bio-text2 h2 {
    font-size: 28px;
    text-align: center;
  }

  .bio-underline2 {
    margin-left: auto;
    margin-right: auto;
  }

  .bio-text2 p {
    font-size: 16px;
    text-align: center;
  }


}


@media (max-width: 1180px) {

  .bio-text2 p {
    font-size: 16px;
    text-align: justify;
  }

  .head2 {
    font-size: 28px;
  }

  .services-intro2 {
    width: 100%;
  }




  .blog-underline {
    width: 170px;
    height: 4px;
    background: #ff6200;
    margin-bottom: 0px;
    margin-top: 15px;
    font-size: 55px;
  }



}




@media (max-width: 1017px) {

  .paragraph-div2 {
    padding-right: 9%;
  }


  .bio-text2 {
    padding-left: 3%;
  }

}







@media (max-width: 930px) {

  .paragraph-div2 {
    padding-right: 6%;
  }


  .bio-text2 {
    padding-left: 2%;
  }

}











































































/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0c0c0c;
  --panel: #121212;
  --muted: #bdbdbd;
  --text: #ffffff;
  --brand: #f15a24;
  /* orange accent to match screenshot */
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

html,
body {
  height: 100%
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: 'Lato', Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-image {

  background-image: url("images/joyya.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.hero-text {
  position: relative;
  z-index: 2;
  /* width: 100%; */
  padding-right: 50%;
  margin-top: -100px;
}

@media (max-width: 405px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.hero-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 2rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.hero-title span {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
} */

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 2px solid var(--border-color);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--bg-darker);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.services-title {
  position: relative;
}

.services-title h2 {
  margin-bottom: 1rem;
}

.title-decoration {
  display: flex;
  gap: 0.5rem;
}

.circle {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.services-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  margin-bottom: 2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/background-image.jpg') center/cover;
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  border-radius: 50%;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-brand {
  margin-top: 1.5rem;
}

.footer-brand span {
  display: block;
  margin-bottom: 0.5rem;
}

.orestify {
  color: var(--primary-color);
  font-weight: 600;
}

.designer {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-logo .logo-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.footer-logo .logo-text {
  font-size: 0.6rem;
  right: -35px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
  }

  .profile-image {
    border-radius: 20px;
    border: 2px solid var(--border-color);
  }

  .hero-line {
    margin: 1rem auto 2rem;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .title-decoration {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .services {
    padding: 60px 0;
  }

  .cta {
    padding: 60px 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .profile-image {
    width: 250px;
    height: 300px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for service cards */
.service-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}