<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hahmlet', serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

header {
  width: 100%;
  background: linear-gradient(to right, #fff, #f7f7f7);
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  padding-right: 20px;
}

.section-container {
  width: 100%;
  max-width: 100%;
  /* Adjust this value based on your design */
  margin: 0 auto;
  /* Center the content */
}

nav {
  display: flex;
  flex-wrap: wrap;
}

/* Update top navigation menu items to have a button-like appearance */
nav a {
  font-family: 'Hahmlet', serif;
  display: inline-block;
  padding: 10px 20px;
  background-color: #001f3f;
  /* Dark blue background */
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 50px;
  /* Make it completely round */
}

nav a:hover {
  background: linear-gradient(to right, #ff8c00, #ff4500);
}

/* Add a media query for smaller screens */
@media (max-width: 800px) {
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }

  nav a {
    margin: 5px;
  }
}

section {
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.section3 {
  max-width: 900px;
}

.carousel h2 {
  font-family: 'Garamond';
  font-size: 2.5em;
  margin-left: 0px;
  text-align: center;
  font-weight: bold;
}

.about-me h1 {
  font-family: 'Garamond';
  font-size: 2em;
  margin-left: 0px;
}

.about-me {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-me-text {
  width: 100%;
  min-width: 250px;
  margin-left: 20px;
  max-width: 650px;
  flex: 1;
  font-size: 1.25em;
  line-height: 1.5em;
  margin-right: 20px;
}

.about-me-text h1 {
  line-height: 1em;
}

.about-me-text p {
  margin-bottom: 40px;
}

.about-me-portrait {
  width: 100%;
  max-width: 270px;
  flex: 1;
  margin-top: 20px;
  text-align: center;
  display: block;
}

.newsletter-portrait {
  width: 100%;
  max-width: 500px;
  flex: 1;
  margin-top: 20px;
  text-align: center;
  display: block;
}

@media (max-width: 800px) {

  .about-me-portrait,
  .recent-work {
    display: none;
  }
}

.portrait {
  width: 100%;
  max-width: 80%;
  height: auto;
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  margin-left: 20px;
}

.section1 {
  max-width: 900px;
}

header img {
  padding: 10px;
  margin-left: 10px;
}

.section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 900px;
}

.section2 div {
  min-width: 250px;
  width: calc(30% - 20px);
  text-align: center;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 25px 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
}

.section2 h2 {
  font-family: Garamond;
  font-size: 2.5em;
}

.section4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 900px;
}

.section4 div {
  min-width: 250px;
  width: calc(30% - 20px);
  text-align: center;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
}

/* Adjust the style for images within section4 */
.section4 img {
  max-width: 100%;
  /* Ensure images don't exceed the width of their container */
  height: auto;
  /* Maintain the aspect ratio of the image */
  display: block;
  /* Remove extra space below inline-block images */
  margin: 0 auto;
  /* Center the image horizontally within its container */
}

.section2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #dddddd;
}

footer {
  width: 100%;
}

.footer-logo,
.footer-copyright,
.footer-social {
  width: 100%;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  color: #fff;
  margin: 5px 10px;
  text-decoration: none;
}

/* Button styles */
.details-button {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  background: linear-gradient(to right, #001f3f, #003366);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Hahmlet', serif;
  text-decoration: none;
}

.details-button:hover,
.subscribe-button:hover {
  background: linear-gradient(to right, #ff8c00, #ff4500);
}

/* Additional style for subscribe button */
.subscribe-button {
  font-size: 1.2em;
  border: 1px solid #003366;
  text-decoration: none;
  font-family: 'Hahmlet', serif;
  margin-top: auto;
  padding: 10px 15px;
  background: linear-gradient(to right, #001f3f, #003366);
  color: #fff;
  border: none;
  border-radius: 50px;
  /* Make it completely round */
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.subscribe-button:hover {
  background-color: #fff;
  /* Change the color on hover */
  color: #000;
  border: 1px solid #ff4500;
  text-decoration: none;
}

footer {
  background: linear-gradient(to right, #fff, #f7f7f7);
  color: #333;
  padding: 10px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  /* Add top border */
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  /* Add slight drop shadow effect */
}

/* Add a slight angle and frayed edges to the start and end of the highlighter */
.highlight-text {
  position: relative;
  font-weight: bold;
  display: inline-block;
  font-size: 1.1em;
  line-height: 0.9em;
}

.highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  /* Adjust this value for the desired distance from the text */
  height: 1em;
  z-index: -1;
  background-color: rgba(255, 107, 107, 0.6);
  /* Light blue color with 30% transparency */
  transform: rotate(-1.5deg);
  /* Rotate by 1.5 degrees */
}

.highlight-text-blue {
  position: relative;
  font-weight: bold;
  display: inline-block;
  font-size: 1.1em;
  line-height: 0.9em;
}

.highlight-text-blue::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  /* Adjust this value for the desired distance from the text */
  height: 1em;
  z-index: -1;
  background-color: #00dfff;
  opacity: 0.33;
  /* Light blue color with 30% transparency */
  transform: rotate(-1.5deg);
  /* Rotate by 1.5 degrees */
}

/* Divider with drop shadow */
.divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.index-box {
  height: 340px;
  display: block;
}

.index-box p {
  margin-bottom: 30px;
}

.index-box img {
  height: 80px;
  width: 80px;
  border: none;
}

/* Style for articles */
.article {
  position: relative;
  text-align: center;
  margin: 20px;
  height: 450px;
  padding-bottom: 20px;
}

.article p {
  height: 6em;
}

.article img {
  max-height: 160px;
}

.article h2 {
  height: 3em;
}

/* Centered section heading */
.section4 .section-heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
}

.section5 {
  background: #AAB5FF;
  background: linear-gradient(135deg, #AAB5FF, #A0C2EF);
  text-align: center;
  font-weight: normal;
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
}

.section5 h2 {
  width: 100%;
  font-size: 2em;
  padding-right: 20px;
}

.section5 p {
  width: 100%;
  font-size: 1.35em;
  margin-bottom: 20px;
  font-weight: normal;
  padding-right: 20px;
}

/* Updated styles for Section 6 */
.section6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.section6 .column-left {
  flex: 1;
  text-align: center;
  /* Center align text */
}

.section6 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.section6 .column-right {
  flex: 1;
  margin-left: 20px;
  text-align: center;
  /* Center align text */
}

.section6 h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.section6 p {
  font-size: 1.25em;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.section6 .cta-button {
  padding: 10px 15px;
  background: linear-gradient(to right, #001f3f, #003366);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 auto;
  /* Center align button */
  display: block;
  /* Ensure it takes full width */
}

.section6 .cta-button:hover {
  background: linear-gradient(to right, #ff8c00, #ff4500);
}

/* Add media query to hide image in section6 and expand text column on smaller screens */
@media (max-width: 800px) {
  .section6 img {
    display: none;
  }

  .section6 .column-left {
    flex: 1 100%;
    margin-right: 0;
  }

  .section6 .column-right {
    flex: 1 100%;
  }
}

/* Updated styles for Section 7 */
.section7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #FFF;
  padding: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 20px;
}

.section7 .section-heading {
  margin-bottom: 20px;
}

.section7-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
}

.section7 .column-left {
  flex: 1;
  margin-right: 20px;
}

.section7 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.section7 .column-right {
  flex: 1;
}

.section7 h2 {
  font-size: 2em;
  margin_bottom: 10px;
}

.section7 p {
  font-size: 1.25em;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.section7 .cta-button {
  padding: 10px 15px;
  background: linear-gradient(to right, #001f3f, #003366);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Hahmlet', serif;
}

.section7 .cta-button:hover {
  background: linear-gradient(to right, #ff8c00, #ff4500);
}

/* Add media query to hide images and expand text column on smaller screens */
@media (max-width: 800px) {
  .section7 img {
    display: none;
  }

  .section7 .column-left {
    flex: 1 100%;
    margin-right: 0;
  }

  .section7 .column-right {
    flex: 1 100%;
  }
}

/* Add media query to hide newsletter-portrait and expand text column on smaller screens */
@media (max-width: 800px) {
  .newsletter-portrait {
    display: none;
  }

  .about-me-text {
    flex: 1 100%;
    margin-right: 0;
  }
}

/* Subscription Packages Section Styles */
.subscription-packages {
  font-size: 0.8em;
  width: 100%;
  background: linear-gradient(135deg, #efefef, #eeeeee);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  color: #000;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  /* Allow content to wrap to the next row */
  justify-content: space-around;
  /* Evenly distribute content horizontally */
  max-width: 950px
}

.subscription-heading h2 {
  font-size: 2.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.subscription-content {
  flex: 0 1 calc(30% - 20px);
  /* Adjust width for three columns with some margin */
  padding: 20px;
  margin: 0 10px 20px;
  /* Add margin to the bottom for some spacing */
  margin-bottom: 20px;
  text-align: center;
  height: 350px;
  border-bottom: 1px solid #ccc;
}

/* Adjusted styles for .subscription-content-book-call */
.subscription-content-book-call {
  flex: 0 1 calc(100% - 20px);
  /* Full width, considering margin */
  padding: 20px;
  margin-left: 20px;
  max-width: 260px;
  background: none;
  /* Add margin to the bottom for some spacing */
  text-align: center;
  max-height: none;
  /* Remove max-height */
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

.subscription-content-book-call h3 {
  font-size: 1.8em;
}

.subscription-heading,
.subscription-content {
  width: 100%;
  /* Make both heading and content divs full width */
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */
}

.subscription-column {
  background: #fff;
  border: 0px solid #ddd;
  border-radius: 20px;
  min-width: 100px;
  max-width: 260px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 10px;
  margin-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.subscription-column-3rd {
  background: #fff;
  border: 0px solid #ddd;
  border-radius: 20px;
  min-width: 100px;
  max-width: 260px;
  padding-top: 10px;
  margin-top: 20px;
  padding-right: 20px;
}

.subscription-content img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.subscription-content h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.subscription-content p {
  height: 6em;
  font-size: 1.2em;
  line-height: 1.5em;
}

.subscription-content p.price {
  font-size: 1.2em;
  line-height: 1.5em;
  margin-bottom: 20px;
  height: 4em;
  max-height: 100px;
}

.subscription-details {
  font-size: 0.9em;
}

.subscription-details h4 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.subscription-details ul {
  text-align: left;
}

.subscription-details ul li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
}

.primary-cta,
a.secondary-cta {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Hahmlet', serif;
  color: #666;
}

.primary-cta {
  background: linear-gradient(to right, #001f3f, #003366);
  color: #FFF;
  font-family: 'Hahmlet', serif;
  font-weight: bold;
  margin-right: 10px;
}

.primary-cta:hover {
  background: linear-gradient(to right, #ff8c00, #ff4500);
}

/* Adjusted styles for .secondary-cta */
.secondary-cta {
  background: none;
  /* Remove background */
  color: #001f3f;
  font-weight: bold;
  font-size: 0.9em;
  text-decoration: underline;
}

.secondary-cta:hover {
  color: #ff4500;
}

/* Button styles with sharp drop shadow */
.details-button,
.subscribe-button,
.cta-button,
.primary-cta {
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.3);
  /* Sharp drop shadow, displaced to bottom right */
}

/* Add this to your existing styles.css file */
/* Style for Recent Work Section */
.recent-work {
  background: #f7f7f7;
  /* Light gray background */
  padding: 40px;
  text-align: center;
}

.recent-work .section-heading {
  margin-bottom: 20px;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.recent-work p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Style for Sample Projects */
.project {
  background: #fff;
  /* White background for each project */
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.project-description {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.project-details {
  display: flex;
  justify-content: space-between;
}

.project-column {
  flex: 1;
}

.project-column p {
  font-size: 1em;
  margin-bottom: 10px;
}

.project-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.project {
  flex: 1 48%;
  /* Adjust the width based on your preference */
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* Update the existing media query for smaller screens */
@media (max-width: 600px) {
  .subscription-packages {
    max-width: calc(100% - 40px);

  }
  .subscription-content {
    flex: 1 100%;
    margin: 0;
    max-width: 100%;
  }

  .subscription-column {
    min-width: calc(100% - 20px);
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }

  .subscription-column-3rd {
    min-width: 100%;
    max-width: none;
    margin-left: 10px;
    margin-right: 0;
  }

  .subscription-content-book-call {
    max-width: none;
  }

  .subscription-packages {
    text-align: center;
  }
}

/* Add new media queries for different column widths */
@media (min-width: 601px) and (max-width: 900px) {
  .subscription-packages {
    max-width: calc(100% - 40px);
  }

  .subscription-content {
    flex: 1 100%;
    margin: 0;
    max-width: 100%;
    height: 320px;
  }

  .subscription-content p {
    height: 4em;
  }

  .subscription-column {
    min-width: 400px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .subscription-content-book-call {
    max-width: calc(100% - 20px);
  }

  .subscription-column-3rd {
    min-width: calc(100%-20px);
    max-width: none;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .subscription-content {
    flex: 0 1 calc(33.33% - 20px);
    max-width: 300px;
  }

  .subscription-column {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .subscription-column-3rd {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  @media (min-width: 1151px) {
    .subscription-content {
      flex: 0 1 calc(33.33% - 20px);
      max-width: 280px;
    }
  }
</pre></body></html>