/* Custom Font Faces */


@font-face {
  font-family: "Newsreader Display Light";
  src: url('//static.showit.co/file/1I7EOSAoTAKkjYfuAkGeCg/shared/newsreaderdisplay-light.woff');
}
@font-face {
  font-family: "Newsreader Display Extra Light";
  src: url('//static.showit.co/file/e-Sz1JHARY2ZulIM_eEZmg/shared/newsreaderdisplay-extralight.woff');
}
@font-face {
  font-family: "Newsreader Display Light Italic";
  src: url('//static.showit.co/file/NpbPBL7lQNGa0-_iBnBTag/shared/newsreaderdisplay-lightitalic.woff');
}
@font-face {
  font-family: "Newsreader Display Italic";
  src: url('//static.showit.co/file/Rn231XPqSoykFEDETiDQWA/shared/newsreaderdisplay-italic.woff');
}
@font-face {
  font-family: "Newsreader Display Extra Light Italic";
  src: url('//static.showit.co/file/o6siKMDnS7WkOQNOqaJuCQ/shared/newsreaderdisplay-extralightitalic.woff');
}

/* Global Styles */
body {
  background-color: white;
  color: black;
  margin: 0;
  padding: 0;
}

i {
  font-family: 'Newsreader Display Light Italic';
  font-style: italic;
}

/* Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  text-transform: uppercase;
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-size: 14px;
  text-align: left;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 1rem 0;
}
.navbar-brand {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-height: 1.2;
  letter-spacing: 0em;
  font-size: 26px;
  text-align: left;
  font-family: 'Newsreader Display Light';
  font-weight: 400;
  font-style: normal;
}
.navbar-nav .nav-link {
  color: rgba(76, 76, 75, 1);
}
.navbar-nav .nav-link:hover,
.navbar-brand:hover {
  color: rgba(76, 76, 75, 0.8);
}
.navbar .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

/* Welcome Section */
.hero {
  background-color: white;
  padding: 100px 0;
  text-align: center;
}
.welcome-small {
  color: rgba(0, 0, 0, 1);
  font-family: 'Karla';
  line-height: 1.1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  font-style: normal;
}
.welcome-big {
  color: rgba(0, 0, 0, 1);
  line-height: 1.2;
  letter-spacing: 0em;
  font-size: 60px;
  text-align: center;
  font-family: 'Newsreader Display Light';
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
  text-transform: none;
}

/* Media Section */
.media-section {
  position: relative;
  height: 800px; /* Adjust height as needed */
  min-height: 80vh; /* Takes up 80% of the viewport height */
  margin-top: 275px;
  align-content: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Video Cropping Container */
.video-container {
  height: 100%;
  position: relative;
  overflow: hidden;
  height: 772px; /* adjust to your desired cropped height */
}

/* Video Styles */
.bg-video {
  position: absolute;
  width: 1997px;
  height: 3789px;
  inset: -1508.36px auto auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

/* Overlay Image - Extending Above the Section */
.overlay-image {
  position: absolute;
  left: 50%;
  top: -120px; /* Adjust this negative value so the image extends above the section */
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  height: auto;
  width: 828px;
  height: 671px;
  object-fit: cover;
}

/* Animated Text in Media Section */
.animated-text {
  font-size: clamp(40px, 9vw, 170px);
  font-family: 'Newsreader Display Extra Light', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  width: 100%;
  text-align: center;
  user-select: text;
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateX(-100%); /* Start off-screen left */
  opacity: 0;
  transition: transform 10s ease-in-out, opacity 1s ease-in-out;
  z-index: 3;
}
.animated-text.active {
  transform: translateX(0);
  opacity: 1;
}

/* Section Titles */
.section-title {
  margin: 50px 0 30px;
  text-align: center;
}

/* Portfolio Items */
.portfolio-item {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  /* Reduce the overall media section height for mobile */
  .media-section {
    height: 60vh;       /* Adjust this value if needed */
    margin-top: 50px;   /* A smaller top margin */
    position: relative;
  }
  
  /* Video container adjustment to keep content within bounds */
  .video-container {
    height: 60vh;
    overflow: hidden;
    position: relative;
  }
  
  /* Scale down the background video while preserving rotation */
  .bg-video {
    position: absolute;
    width: 1997px;
    height: 3789px;
    top: 50%;
    left: 50%;
    /* Apply the original transform with an added scale factor */
    transform: translate(-50%, -50%) rotate(90deg) scale(0.3);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  /* Scale down the overlay image similarly */
  .overlay-image {
    position: absolute;
    left: 50%;
    top: -35px; /* Adjust if needed for vertical alignment */
    transform: translateX(-50%);
    width: 313px;
    height: 335px;
    object-fit: cover;
    z-index: 2;
  }

  .animated-text {
    font-size: clamp(70px, 9vw, 170px);
    font-family: 'Newsreader Display Extra Light', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    width: 100%;
    text-align: left;
    right: 384px;
    user-select: text;
    position: absolute;
    top: 20px; /* Center vertically */
    transition: transform 10s ease-in-out, opacity 1s ease-in-out;
    z-index: 3;
  }
  .animated-text.active {
    transform: translateX(0);
    opacity: 1;
  }
}




/* iPhone SE and small devices */
@media (max-width: 480px) {
.navbar .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.hero {
  padding: 50px 0;
}
/* Further adjustments can be added here */
}

/* 4K displays */
@media (min-width: 3840px) {
.media-section {
  min-height: 90vh;
  margin-top: 300px;
}
.animated-text {
  font-size: clamp(80px, 9vw, 250px);
}
/* Additional large-screen adjustments */
}


#about {
  margin-top: 60px;
}

#about .brand-header {
  font-family: 'Newsreader Display Light', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

#about .section-title {
    color: rgba(73, 73, 73, 1);
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-align: left;
    font-family: 'Karla';
    font-weight: 400;
    font-style: normal;
}

#about .subtitle-container {
  flex: 0 0 487px;
  width: 487px;
  margin-right: 50px;
}

#about .section-subtitle {
    color: rgba(0, 0, 0, 1);
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-size: 45px;
    text-align: left;
    font-family: 'Newsreader Display Light';
    font-weight: 400;
    font-style: normal;
    text-transform: none;
}

#about .text-container {
  flex: 0 0 457px;
  width: 457px;
}

#about .section-text {
    color: rgba(0, 0, 0, 1);
    line-height: 1.8;
    letter-spacing: 0.01em;
    font-size: 19px;
    text-align: left;
    font-family: 'Libre Franklin';
    font-weight: 400;
    text-transform: none;
}

.subtitle-text-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.about-content {
  margin-left: 150px; /* for desktop if desired */
}



@media (max-width: 480px) {
  #about .subtitle-container,
  #about .text-container {
    flex: 1 1 100%;
    width: 100%;
    margin-right: 0;
  }
  #about .section-subtitle {
    font-size: 32px; /* Adjust font size as needed */
  }
  #about .section-text {
    font-size: 16px;
  }
}

/* Mobile (lowest resolution) adjustments */
@media (max-width: 480px) {
  /* Center the about content by removing the left margin */
  .about-content {
    margin: 0 auto;
    text-align: center;
  }
  
  /* Stack (or layer) the texts */
  .subtitle-text-wrapper {
    display: block;
  }
  
  /* Keep the main subtitle in front */
  .subtitle-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px; /* Adds space between the texts */
  }
  
  /* Position the secondary text behind */
  .text-container {
    position: relative;
    top: 0; /* adjust vertical position as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 1;  
    width: 100%;
    text-align: center;
    margin-top: 0;
  }
}

/* Enforce the specific dimensions for 2.jpg and 3.jpg */
.custom-2 {
  width: 507px;
  height: 632px;
  object-fit: cover;
  margin-left: 130px;
  margin-top: 40px; /* Adjust this value as needed */
}

.custom-3 {
  width: 475px;
  height: 625px;  
  object-fit: cover;
  margin-left: 50px;
}

/* Lower the second image a bit */
#about-images .right-image {
  margin-top: 100px; /* Adjust this value as needed */
}

#rotating-text {
  position: absolute;
  bottom: -94px;
  left: -46px;
  width: 200px;
  height: 200px;
  animation: rotation 30s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  #about-images {
    transform-origin: top left; /* Adjust this as needed for proper alignment */
  }
}

/* Adjustments for about-images on screens up to 480px */
@media (max-width: 480px) {
  /* Force the row to display as flex with two equal columns */
  #about-images .row {
    display: flex;
    flex-wrap: nowrap;
  }
  #about-images .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  #about-images .left-image .custom-2 {
    margin-left: 0; /* Remove the extra left margin for image 2 */
    width: 165px;
    height: 242px;
  }
  
  #about-images .right-image .custom-3 {
    margin-left: auto; /* Push image 3 to the right */
    margin-right: 0;
    width: 166px;
    height: 256px;
  }
  
  #about-images svg {
    position: absolute;
    left: -72px;
    top: 175px;
    width: 150px;
    height: 150px;
    transform: scale(0.7);
  }
}


/* Base styles for #services section */
#services {
  margin-left: 284px;
}

/* Services Section Title */
#services .section-title {
    color: rgba(0,0,0,1);
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-size: 55px;
    text-align: left;
    font-family: 'Newsreader Display Light';
    font-weight: 400;
    font-style: normal;
}

/* Services Row Headings */
#services .row h4 {
    color: rgba(0,0,0,1);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-align: left;
    font-family: 'Karla';
    font-weight: 400;
    font-style: normal;
}

/* Services Description Paragraph */
#services .services-description {
    text-transform: none;
    width: 866px;
    height: 164px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    font-size: 19px;
    text-align: left;
    font-family: 'Libre Franklin';
    font-weight: 400;
    font-style: normal;
    column-count: 2;
    column-gap: 40px;
    overflow: hidden;
}

/* Center the container inside the Services section */
#services .container {
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE ADJUSTMENTS */

/* For screens 1024px and below */
@media (max-width: 1024px) {
  #services {
    margin-left: 50px;  /* Reduce left margin */
    margin-right: 50px;
  }
  
  #services .section-title {
    font-size: 45px;
  }
  
  #services .row h4 {
    font-size: 18px;
  }
  
  #services .services-description {
    width: 100%;
    height: auto;  /* Allow height to adjust */
    column-count: 2;
    column-gap: 20px;
    font-size: 17px;
  }
}

/* For screens 768px and below */
@media (max-width: 768px) {
  #services {
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;  /* Add some side padding */
  }
  
  #services .section-title {
    font-size: 38px;
    text-align: center;
  }
  
  #services .row h4 {
    font-size: 16px;
    text-align: center;
  }
  
  #services .services-description {
    width: 100%;
    height: auto;
    column-count: 1;  /* Use one column for narrow screens */
    column-gap: 0;
    font-size: 16px;
    text-align: center;
  }
}

/* For screens 480px and below */
@media (max-width: 480px) {
  #services .section-title {
    font-size: 32px;
  }
  
  #services .row h4 {
    font-size: 14px;
  }
  
  #services .services-description {
    font-size: 14px;
  }
}



    /* Portfolio Section */
    #portfolio {
      padding-top: 60px;
      padding-bottom: 60px;
      overflow-x: hidden;  /* Prevent horizontal scrolling */
    }
    
    #portfolio .section-title {
      font-family: 'Newsreader Display Light';
      font-size: 48px;
      text-align: center;
      margin-bottom: 40px;
      color: rgba(0,0,0,1);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    #portfolio .portfolio-item {
      margin-bottom: 30px;
    }
    
    #portfolio .portfolio-item img {
      width: 100%;
      height: auto;
      
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* Optional: subtle shadow */
    }
    
    /* Smooth fade transition for portfolio items */
    .portfolio-item {
      transition: opacity 1s ease;
    }
    
    /* Hidden items are fully transparent and non-interactive */
    .portfolio-item.hidden {
      opacity: 0;
      pointer-events: none;
    }
    
    /* Visible items are fully opaque */
    .portfolio-item.visible {
      opacity: 1;
    }
    
    
    /* Portfolio container with fixed dimensions */
    .portfolio-container {
      width: 1440px;
      height: 800px;
      margin: 0 auto; /* Center the container */
      display: grid;
      grid-template-columns: 1fr 1fr; /* Two equal columns */
      grid-template-rows: 1fr 1fr;    /* Two equal rows */
      gap: 0;                       /* Remove gaps between grid items */
    }
    
    /* Ensure each image fills its grid cell */
    .portfolio-container .portfolio-img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Crop/cover so images fill without distortion */
      display: block;
    }
    
    /* Portfolio Wrapper: fixed dimensions, centered, and overflow hidden */
    .portfolio-wrapper {
      position: relative;
      width: 1920px;
      height: 884px;
      left: 50%;
      transform: translateX(-50%);
      overflow: hidden;
      /* Optional: add a background color if needed for debugging or design */
      /* background: #f0f0f0; */
    }
    
    /* Portfolio Groups and fade transitions (if using groups) */
    .portfolio-group {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: opacity 1s ease-in-out;
    }
    
    .portfolio-group.visible {
      opacity: 1;
      pointer-events: auto;
    }
    
    .portfolio-group.hidden {
      opacity: 0;
      pointer-events: none;
    }
    
    /* Ensure each portfolio image is exactly 720 x 884 and fills its cell */
    .portfolio-item img {
      width: 720px;
      height: 884px;
      object-fit: cover;
      display: block;
    }
    
    /* Title overlay in the center, mimicking Negroni */
    .portfolio-title {
      position: absolute;
      top: 45%;
      left: 50%;
      line-height: 1.1;
      transform: translate(-50%, -50%);
      text-align: center;
      font-family: 'Newsreader Display Light', sans-serif;
      font-size: 100px; /* adjust size as needed */
      color: rgb(255, 255, 255);
      text-transform: none;
      pointer-events: none; /* allow clicks to pass through */
      z-index: 10;
    }
    
    /* Portfolio Subtitle Styling */
    .portfolio-subtitle {
      position: absolute;
      top: 60%; /* Position below the title – adjust as needed */
      left: 50%;
      width: 475px;
      font-size: 400px;
      transform: translateX(-50%);
      text-align: center;
      text-transform: none;
      font-family: 'Libre Franklin';
      font-size: 19px; /* Adjust as needed */
      color: rgb(255, 255, 255);
      letter-spacing: 0.01em;
      line-height: 1.8;
      pointer-events: none;
      z-index: 10;
    }
    
    .portfolio-button-wrapper {
      position: absolute;
      top: 70%; /* Adjust this value to position it below the subtitle */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }
    
    /* Portfolio Button Styling: Made a bit bigger */
    .portfolio-button {
      display: inline-block;
      background-color: rgba(248, 247, 242, 1);
      color: rgba(73, 73, 73, 1);
      text-transform: uppercase;
      font-family: 'Karla', sans-serif;
      font-size: 18px;       /* Increased font-size */
      letter-spacing: 0.1em;
      padding: 15px 40px;    /* Increased padding */
      border: none;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    
    /* Testimonials Section */
    #testimonials {
      background-color: #fff;  /* Pure white background */
      color: #000;             /* Black text */
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
     --bs-bg-opacity: 1;
        background-color: rgb(255 255 255) !important;
        
    }
    
    #testimonials .container {
      max-width: 900px; /* Adjust width as needed */
      margin-left: auto;
      position: relative;
      margin-right: 50px; /* Push content towards the right */
      text-align: left; /* Ensure text remains aligned properly */
    }
    
    #testimonials p{
    
        line-height: 1.2;
        letter-spacing: 0.02em;
        font-size: 38px;
        text-align: left;
        text-transform: none;
        font-family: 'Newsreader Display Light';
        font-weight: 400;
        font-style: normal;
        width:497px;
    
    }
    
    .text-white {
        --bs-text-opacity: 1;
        color: rgb(0 0 0) !important;
    }
       
    
    #testimonials .section-title {
      font-family: 'Karla';
      font-size: 40px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 40px;
      font-weight: 400;
      color: #000;  /* Black text */
      justify-self: left;
    }
    
    /* Flex container for centering testimonials */
    #testimonials .row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    /* Blockquote styling for testimonials */
    #testimonials blockquote {
      border-left: 4px solid rgba(0, 0, 0, 0.3);  /* Black border with slight transparency */
      padding: 20px;
      font-size: 18px;
      font-style: italic;
      line-height: 1.6;
      margin: 20px;
      max-width: 500px;
      color: #000;  /* Black text */
    }
    
    /* Footer styling for testimonial author */
    #testimonials .blockquote-footer {
      font-size: 14px;
      color: rgba(0, 0, 0, 0.8);  /* Nearly black */
      margin-top: 10px;
      text-align: right;
    }
    
    /* Ensure only one testimonial is visible */
    .testimonial-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;       /* Completely hide inactive items */
      transition: opacity 0.6s ease-in-out;
      pointer-events: none;      /* Prevent interaction */
      z-index: 1;                /* Default stacking */
    }
    
    
    .testimonial-item.active {
      opacity: 1; /* Fade in */
      position: absolute; /* Ensure the active one is properly placed */
      visibility: visible;       /* Show active testimonial */
      pointer-events: auto;       /* Enable interaction */
      z-index: 10;   
    }
    
    .testimonial-navigation {
      margin-top: 20px;
      justify-self: center;
    }
    
    .testimonial-navigation .arrow-icon {
      display: inline-block;
      font-size: 75px;
      text-decoration: none; /* Removes underline */
      color: rgba(73, 73, 73, 1);
      background-color: rgb(255, 255, 255);
      width: 50px;
      height: 50px;
      line-height: 50px;
      justify-self: center;
      border-radius: 50%; /* Makes it round */
      user-select: none; /* Prevents text selection */
      cursor: pointer;
    }
    
    /* Remove hover and focus effects */
    .testimonial-navigation .arrow-icon:focus,
    .testimonial-navigation .arrow-icon:active {
      outline: none; /* No focus outline */
      box-shadow: none; /* No background highlight */
      background-color: rgb(255, 255, 255); /* No change on click */
    }
    
    .testimonial-item.active,
    .testimonial-item.active * {
      user-select: text !important;
      -webkit-user-select: text !important;
      -moz-user-select: text !important;
      -ms-user-select: text !important;
    }
    
    
    /* Arrow Icon Styling */
    .arrow-icon {
      font-size: 24px;
    }
    
    /* Left Images Container: Absolutely positioned on the left side */
    .testimonial-left-images {
      position: absolute;
      top: 50%;                /* Center vertically in the container */
      left: 0;                 /* Align to the left edge */
      transform: translateY(-50%);
      z-index: 5;              /* Below the testimonial text (if needed) */
    }
    
    /* Base image (img-9) is the larger one */
    .testimonial-left-images .img-9 {
      position: absolute;
        top: -280px;
        left: -430px;
        width: 350px;
        height: auto;
        z-index: 1;
    }
    
    /* Image 8: Slightly smaller, positioned a bit to the right and above img-9 */
    .testimonial-left-images .img-8 {
      position: absolute;
        top: -175px;
        left: -255px;
        width: 220px;
        height: auto;
        z-index: 2;           /* Higher than img-9, so it appears above */
    }
    
    /* (Optional) Responsive adjustments for the images */
    @media (max-width: 768px) {
      .testimonial-left-images .img-9 {
        width: 180px;
      }
      .testimonial-left-images .img-8 {
        width: 160px;
        left: 30px;
      }
    }
    
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      #testimonials .section-title {
        font-size: 36px;
      }
      #testimonials blockquote {
        font-size: 16px;
      }
      #testimonials .blockquote-footer {
        font-size: 12px;
      }
    }

    .footer-section {
      background-color: rgba(243, 243, 241, 1);
      color: rgba(73, 73, 73, 1);
      padding: 60px 0;
      height: 633px; /* Set the footer height to 633px */
      position: relative; /* Positioning for text */
      overflow: hidden; /* Clip any overflow content */
    }
    .footer-section .row {
      display: flex;
      justify-content: space-between;
      text-align: left;
      flex-wrap: wrap;
    }
    
    /* "Good things happen to those on the list." */
    .footer-section .good-things {
      color: rgba(0, 0, 0, 1);
      line-height: 1.2;
      letter-spacing: 0.02em;
      width: 365px;
      font-size: 35px;
      text-align: left;
      font-family: 'Newsreader Display Light', sans-serif;
      font-weight: 400;
      font-style: normal;
      text-transform: none;
    }
    
    /* "Download this incredible free resource..." */
    .footer-section .newsletter-text {
      color: rgba(0, 0, 0, 1);
      line-height: 1.8;
      letter-spacing: 0.01em;
      font-size: 13px;
      text-align: left;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 400;
      font-style: normal;
      text-transform: none;
      width: 378px;
    }
    
    /* NAVIGATE, SOCIALIZE, and CONTACT headings */
    .footer-section h4 {
      text-transform: uppercase;
      line-height: 1.1;
      letter-spacing: 0.1em;
      font-size: 14px;
      text-align: left;
      font-family: 'Karla', sans-serif;
      font-weight: 400;
      font-style: normal;
    }
    
    .footer-section .im-based{
      color: rgba(0, 0, 0, 1);
        line-height: 1.8;
        letter-spacing: 0.01em;
        font-size: 13px;
        text-align: left;
        font-family: 'Libre Franklin';
        font-weight: 400;
        font-style: normal;
        text-transform: none;
        width: 209px;
    }
    
    /* Footer links (Home, Work, About, etc.) */
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 8px;
      
    }
    
    /* Footer navigation text styling */
    .footer-links a {
      color: rgba(0, 0, 0, 1);
      line-height: 1.8;
      letter-spacing: 0.01em;
      font-size: 13px;
      text-align: left;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 400;
      font-style: normal;
      text-decoration: none;
      text-transform: none;
    }
    
    /* Newsletter input field */
    .footer-form input {
      width: 100%;
      padding: 8px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    
    /* Newsletter button */
    .footer-form button {
      width: 100%;
      margin-top: 10px;
      background-color: rgba(73, 73, 73, 1);
      color: white;
      border: none;
      padding: 8px;
      border-radius: 5px;
      cursor: pointer;
    }
    
    /* Footer bottom section */
    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      padding-top: 20px;
    }
    
    .footer-bottom p {
      color: rgba(0, 0, 0, 1);
      line-height: 1.1;
      letter-spacing: 0em;
      font-size: 13px;
      font-family: 'Newsreader Display Light Italic';
      font-weight: 400;
      font-style: normal;
      position: absolute;
      top :90%;
      right : 5%;
      z-index: 11;
    }
    
    
    /* Responsive for smaller screens */
    @media (max-width: 768px) {
      .footer-section .row {
        flex-direction: column;
        text-align: center;
      }
    
      .footer-section .col-md-3 {
        margin-bottom: 20px;
      }
    
      .footer-form input,
      .footer-form button {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
      }
    }
    
    .footer-large-text {
      color: rgba(255, 255, 255, 1);
      text-transform: none;
      line-height: 1;
      letter-spacing: 0em;
      font-size: 250px;
      text-align: center;
      font-family: 'Newsreader Display Extra Light', sans-serif;
      font-weight: 400;
      font-style: normal;
      position: absolute; /* Absolutely position the text */
      bottom: 0; /* Position it at the bottom of the footer */
      left: 50%; /* Center horizontally */
      transform: translateX(-50%) translateY(25%); /* Adjust so 75% is visible and 25% is clipped */
      z-index: 10;
    }
    
    #contact {
      position: relative; /* Ensure the pseudo-element is positioned relative to this section */
      background-image: url('2.1.jpg');
      background-size: cover;
      background-position: center top; /* Align the image to the top */
      height: 821px; /* Reduce the height to crop 200px from the bottom */
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; /* Crop the overflowing part of the image */
      padding-top: 20px; /* Reduced padding to bring the section higher */
      padding-bottom: 50px; /* Optional: Add padding to balance the spacing */
    }
  
    #contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.25); /* 25% darker overlay */
      z-index: 1; /* Ensure the overlay is above the background but below the content */
    }
  
    .contact-wrapper {
      position: relative; /* Ensure content is above the overlay */
      z-index: 2; /* Place content above the overlay */
      padding: 30px 20px;
      max-width: 900px;
      margin: auto;
      margin-bottom: 250px; /* Add margin below the section */
    }
    
      .contact-form .col-md-6 {
        padding: 0 15px; /* Add some spacing between columns */
      }
    
      .contact-form input[type="text"],
      .contact-form input[type="email"],
      .contact-form textarea {
        width: 100%; /* Ensure inputs take full column width */
        max-width: 430px; /* Maintain consistent width */
        height: 45px;
        background-color: white;
        color: rgba(0, 0, 0, 1);
        text-transform: uppercase;
        line-height: 1.2;
        letter-spacing: 0.1em;
        font-size: 12px;
        text-align: left;
        font-family: 'Karla', sans-serif;
        font-weight: 400;
        font-style: normal;
        text-shadow: inherit;
        border: none;
        margin-bottom: 0px; /* Add spacing between fields */
        padding: 10px; /* Add padding inside the input box */
        box-sizing: border-box; /* Ensure padding doesn't affect width */
      }
  
      .contact-form input[type="text"]:focus,
      .contact-form input[type="email"]:focus,
      .contact-form textarea:focus {
          outline: none; /* Remove the outline on focus */
    }
    
      .contact-form textarea {
        height: 230px; /* Set height for the message box */
      }
    
      .contact-form button {
        width: 100%;
        max-width: 430px;
        height: 45px;
        background-color: #000; /* Example button color */
        color: white;
        border: none;
        text-transform: uppercase;
        font-family: 'Karla', sans-serif;
        font-size: 14px;
        cursor: pointer;
      }
  
      .submit-action {
      color: rgba(255, 255, 255, 1);
      letter-spacing: 0em;
      font-size: 20px;
      text-align: center;
      font-family: 'Newsreader Display Italic', serif;
      font-weight: 400;
      font-style: normal;
      text-decoration: underline; /* Add underline */
      text-underline-offset: 3px; /* Position the underline a few pixels below */
      text-decoration-thickness: 1px; /* Make the underline thinner */
      cursor: pointer; /* Change cursor to pointer for interactivity */
      transition: text-underline-offset 0.3s ease, text-decoration-thickness 0.3s ease; /* Smooth transition */
    }
  
    .submit-action:hover {
      text-underline-offset: 5px; /* Move the underline slightly further down */
      text-decoration-thickness: 2px; /* Make the underline slightly thicker */
      opacity: 0.9; /* Slightly reduce opacity for a subtle effect */
    }
  
    .my-5 {
      margin-top: 0px !important;
      margin-bottom: 0px !important;
    }
  
    .contact-title {
      color: rgba(255, 255, 255, 1);
      text-transform: none;
      line-height: 1;
      letter-spacing: 0em;
      font-size: 125px;
      text-align: center;
      font-family: 'Newsreader Display Extra Light', serif;
      font-weight: 400;
      font-style: normal;
      white-space: nowrap; /* Prevent the text from wrapping to the next line */
    }
  
    /* Subtitle Styles */
    .contact-subtitle {
      color: rgba(255, 255, 255, 1);
      line-height: 1.8;
      letter-spacing: 0.01em;
      font-size: 19px;
      text-align: center;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 400;
      font-style: normal;
    }
  
  
    #until-touch {
      background-color: #f8f9fa; /* Light background for contrast */
      color: #000; /* Dark text for readability */
      padding: 50px 20px;
    }
  
    .until-touch-wrapper {
      max-width: 1200px;
      margin: auto;
    }
  
    .until-touch-title {
      text-transform: uppercase;
      line-height: 1.1;
      letter-spacing: 0.1em;
      font-size: 20px;
      text-align: left;
      font-family: 'Karla', sans-serif;
      font-weight: 400;
      font-style: normal;
      margin-bottom: 30px;
    }
  
    .content-title {
      line-height: 1.2;
      letter-spacing: 0.02em;
      font-size: 52px;
      text-align: left;
      font-family: 'Newsreader Display Light', serif;
      font-weight: 400;
      font-style: normal;
      width: 440px; /* Set width for the title */
      height: 56px; /* Set height for the title */
      text-overflow: ellipsis; /* Add ellipsis if text overflows */
      white-space: nowrap; /* Prevent wrapping */
      display: flex;
      align-items: center; /* Center vertically to avoid clipping */
    }
  
    .content-text {
      color: rgba(0, 0, 0, 1);
      font-size: 15px;
      text-align: left;
      line-height: 1.8;
      letter-spacing: 0.01em;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 400;
      font-style: normal;
      width: 386px; /* Set width for the subtitle */
      height: 56px; /* Set height for the subtitle */
      overflow: hidden; /* Ensure it doesn't exceed the height */
      text-overflow: ellipsis; /* Add ellipsis if text overflows */
      display: -webkit-box; /* For limiting to 2 rows */
      -webkit-line-clamp: 2; /* Limit to 2 lines */
      -webkit-box-orient: vertical; /* Vertical box orientation */
    }
  
    hr {
      border: 0;
      border-top: 1px solid #ccc;
      margin: 20px 0;
    }
  
    img {
      width: 439px; /* Explicit width */
      height: 582px; /* Explicit height */
      border-radius: 0; /* Remove curves from the image */
    }
  
    /* Media Query for Phones (max-width: 768px) */
    @media (max-width: 768px) {
      /* Contact Section */
      #contact {
        padding: 20px 10px; /* Adjust padding for smaller screens */
      }
  
      .contact-wrapper {
        max-width: 100%; /* Allow full width on smaller screens */
        margin-bottom: 50px; /* Reduce bottom margin */
      }
  
      .contact-title {
        font-size: 36px; /* Reduce font size for smaller screens */
        text-align: center; /* Center align the title */
      }
  
      .contact-subtitle {
        font-size: 16px; /* Reduce font size for smaller screens */
        line-height: 1.5; /* Adjust line height */
        text-align: center; /* Center align the subtitle */
      }
  
      .contact-form .col-md-6 {
        padding: 0; /* Remove extra padding */
      }
  
      .contact-form input[type="text"],
      .contact-form input[type="email"],
      .contact-form textarea {
        max-width: 100%; /* Allow inputs to take full width */
        font-size: 14px; /* Adjust font size */
      }
  
      .submit-action {
        font-size: 16px; /* Adjust font size for smaller screens */
      }
  
      /* Until We're in Touch Section */
      #until-touch {
        padding: 20px 10px; /* Adjust padding for smaller screens */
      }
  
      .until-touch-wrapper {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center align content */
      }
  
      .until-touch-title {
        font-size: 18px; /* Reduce font size */
        text-align: center; /* Center align the title */
      }
  
      .content-title {
        font-size: 24px; /* Reduce font size */
        width: auto; /* Allow flexible width */
        height: auto; /* Allow flexible height */
        text-align: center; /* Center align the title */
      }
  
      .content-text {
        font-size: 14px; /* Reduce font size */
        width: auto; /* Allow flexible width */
        height: auto; /* Allow flexible height */
        text-align: center; /* Center align the text */
      }
  
      img {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
        margin-top: 20px; /* Add spacing above the image */
      }
    }
  
    /* Media Query for Phones (max-width: 768px) */
    @media (max-width: 768px) {
      /* Until We're in Touch Section */
      #until-touch {
        padding: 20px 10px; /* Adjust padding for smaller screens */
      }
  
      .until-touch-wrapper {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center align content */
      }
  
      .until-touch-title {
        font-size: 18px; /* Reduce font size */
        text-align: center; /* Center align the title */
        margin: auto; /* Center horizontally */
        margin-bottom:20px;
      }
  
      .content-title {
        font-size: 24px; /* Reduce font size */
        width: auto; /* Allow flexible width */
        height: auto; /* Allow flexible height */
        text-align: center; /* Center align the title */
        margin: auto; /* Center horizontally */
      }
  
      .content-text {
        font-size: 14px; /* Reduce font size */
        width: auto; /* Allow flexible width */
        height: auto; /* Allow flexible height */
        text-align: center; /* Center align the text */
        margin: auto; /* Center horizontally */
      }
  
      img {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
        margin-top: 20px; /* Add spacing above the image */
      }
    }

    /* Blog Section */
#blog {
  padding: 0; /* Remove padding to make images touch edges */
  position: relative;
}

.blog-image {
  height: 667px;
  object-fit: cover;
  width: 100%; /* Ensure the images span the full width of their columns */
  border-radius: 0; /* Remove border radius for edge-to-edge effect */
}

.blog-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff; /* White text for contrast */
  text-align: center;
  background: rgba(0, 0, 0, 0.0); /* Optional: Add a semi-transparent background for better readability */
  padding: 20px;
  border-radius: 8px; /* Optional: Add rounded corners */
}

/* Mini Title */
.mini-title1 {
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-size: 20px;
  text-align: center;
  font-family: 'Karla';
  font-weight: 400;
  font-style: normal;
}

/* Main Title */
.blog-main-title {
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  line-height: 1;
  font-size: 75px;
  text-align: center;
  font-family: 'Newsreader Display Extra Light';
  font-weight: 400;
  font-style: normal;
}

/* Subtitle */
.blog-subtitle {
  color: rgba(255, 255, 255, 1);
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: 19px;
  text-align: center;
  font-family: 'Libre Franklin';
  font-weight: 400;
  font-style: normal;
  display: -webkit-box; /* Enable line clamping */
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical; /* Vertical orientation for clamping */
  overflow: hidden; /* Hide overflow text */
}

.blog-post {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-post img {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 15px;
}

.blog-post-title {
  font-size: 20px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.blog-post-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.blog-post-description {
  font-size: 16px;
  font-family: 'Libre Franklin', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Mini Title */
.mini-title {
  font-size: 14px;
  text-align: left;
  color: rgba(73, 73, 73, 1);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: 'Karla';
  font-weight: 400;
  font-style: normal;
}

/* Best of Section */
#best-of {
  padding: 50px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.best-of-title {
  font-size: 55px;
  text-align: left;
  font-family: 'Newsreader Display Extra Light', serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}

.best-of-divider {
  width: 100%;
  margin: 20px auto;
  border: 1px solid #000; /* Black for visibility */
}

.best-of-post {
  display: flex;
  align-items: center;
}

.best-of-image {
  width: 129px;
  height: 150px;
  object-fit: cover;
  margin-right: 15px;
}

.best-of-content {
  text-align: left;
  width: 173px; /* Set the width of the text box */
}

.best-of-content .best-of-title {
  color: rgba(0, 0, 0, 1);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-size: 24px;
  font-family: 'Newsreader Display Light', serif;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box; /* Enable line clamping */
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical; /* Vertical orientation for clamping */
}

/* Blog Highlights Section */
#blog-highlights {
  padding: 50px 20px;
}

.blog-highlight-image {
  width: 318px; /* Set the width */
  height: 383px; /* Set the height */
  object-fit: cover; /* Ensure the image maintains its aspect ratio */
}

.blog-highlight-title {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-height: 1.1;
  letter-spacing: 0em;
  font-size: 45px;
  text-align: left;
  font-family: 'Newsreader Display Light', serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  width: 413px; /* Set the width */
  height: 97px; /* Set the height */
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
}

.blog-highlight-description {
  color: rgba(0, 0, 0, 1);
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-size: 19px;
  text-align: left;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  width: 401px; /* Set the width */
  height: 139px; /* Set the height */
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
}

.blog-category {
    color: rgba(73, 73, 73, 1);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-align: left;
    font-family: 'Karla';
    font-weight: 400;
    font-style: normal;
    margin-left: 110px;
}

.highlight-divider {
  width: 401px;
  height: 1px;
  background-color: rgba(0, 0, 0, 1); /* Black line */
  border: none;
  margin: 15px auto; /* Center the divider */
}

.blog-read-more {
    color: rgba(0, 0, 0, 1);
    letter-spacing: 0em;
    font-size: 20px;
    text-align: left;
    font-family: 'Newsreader Display Italic';
    font-weight: 400;
    font-style: normal;
    margin-left: 110px;
}

.blog-read-more:hover {
  color: #666;
}

#pagination {
  margin-bottom: 100px !important; /* Force the margin to apply */
}

.pagination-link {
  color: rgba(73, 73, 73, 1);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-size: 20px;
  text-align: left;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none; /* Remove underline */
}

.pagination-link:hover {
  color: #666; /* Optional: Change color on hover */
}
.mb-5 {
    margin-bottom: 10rem !important;
}

@media (max-width: 576px){

  .blog-image {
  height: 307px;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
    margin-top:0px;
  }

}

@media (max-width: 767px){

.blog-image {
height: 307px;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
  margin-top:0px;
}

}