@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import "slick-carousel/slick/slick.css";
@import "slick-carousel/slick/slick-theme.css";

body {
  font-family: 'Poppins', sans-serif;
}


@font-face {
  font-family: 'SegoeScript';
  src: url('../fonts/segoescript.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: SegoeScript;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

:root {
  --background: #CACACA;
  --foreground: #171717;
}


/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  /* Logo */
  .logo img {
    width: 200px; /* Adjust the width of your logo */
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 50px; /* 50px gap between headings */
  }
  
  .nav-links a {
    font-size: 1.3rem;
    color: #070808;
    text-decoration: none;
    font-family: SegoeScript; /* Custom font for section headings */
  }
  
  .nav-links a:hover {
    color: #D62027;
  }
  
  /* Right section (social icons + chat button) */
  .right {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .social-icons-header {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #333;
  }
  
  .social-icons-header a {
    color: #333;

    transition: color 0.3s;
  }
  
  .social-icons-header a:hover {
    color: #D62027;
  }
  
  .chat-button {
    padding: 10px 20px;
    border: 2px solid #D62027;
    border-radius: 30px;
    background-color: transparent;
    color: #D62027;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.5s, color 0.5s;
  }
  
  .chat-button:hover {
    background-color: #D62027;
    color: #fff;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
  }
  
  /* Mobile Menu (hidden by default) */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #D42828;
    width: 100%;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  }
  
  .nav-links.active a {
    color: #fff;
    font-weight: normal;
  }

  /* Hero Section Styling */
  .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    height: auto;
    overflow: hidden;
  }

  .left-section {
    flex: 1;
    padding: 0px 20px 0px 100px;
  }

  h1 {
    font-size: 5rem;
    line-height: 1.2;
    font-family: "segoescript";
  }

  .highlight {
    color: #d42828;
    font-weight: 600;
  }

  p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #070808;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
  }

  .explore-button {
    margin-top: 5%;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    border: none;
    background-color: #d42828;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.5s;
  }

  .explore-button:hover {
    background-color: #070808;
  }

  /* Right section (image) */
  .right-section {
    flex: 1;
    height: 100%;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Client Carousel Section */
  .client-carousel-section {
    text-align: center;
    padding: 50px 10px;
    background-color: #fff;
  }

  .carousel-container {
    margin: 0 auto;
    max-width: 90%;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .logo-container img {
    max-height: 200px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .logo-container img:hover {
    filter: none;
  }

  .slick-slider {
    height: 200px;
  }

  /* Intro Text */
  .intro-text {
    max-width: 800px;
    margin: 50px auto;
  }

  h2 {
    font-size: 3.5rem;
    font-family: "segoescript";
    margin-bottom: 20px;
  }

  .highlight {
    color: #d42828;
  }


  /* Services Section */
  .services-section {
    padding: 50px 100px;
    text-align: center;
  }
  .services-section h2 {
    margin-bottom: 50px;
  }
  .services-section h2 span {
    color: #D42828;
  }
  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
  }
  .service-card {
    background-color: #D42828;
    color: #fff;
    width: 450px;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  .service-icon img {
    width: 100%;
    height: auto;
  }
  .service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 3px;
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    font-weight: 300;
  }

  /* Portfolio Section */
  .portfolio-section {
    padding: 50px;
  }
  
  .heading-container {
    text-align: center;
    margin-bottom: 50px;
  }
  
  
  .highlight {
    color: #D62027;
  }
  
  .portfolio-container {
    display: flex;
    align-items: flex-start;
  }
  
  .portfolio-text {
    max-width: 400px;
    text-align: left;
    padding-right: 50px;
  }
  

  .thick-line2 {
    width: 75px;
    height: 5px;
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 3px
  }

  .thick-line {
    width: 100px;
    height: 8px;
    background-color: #D62027;
    margin-bottom: 15px;
    border-radius: 3px
  }

  .location {
    font-size: 1.5rem;
    color: #D62027;
    font-weight: 200;
  }

  .location2 {
    font-size: 1rem;
    font-weight: 100;
  }

  
  .portfolio-carousel {
    height: fit-content;
    overflow: hidden;
  }
  
  .carousel2 {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .portfolio-item {
    padding: 30px;
  }
  
  .card {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%);
  }
  
  .card.active {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  .card:hover {
    transform: scale(1.2);
  }
  
  .overlay {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
  }
  
  .progress-bar-background {
    width: 100%;
    height: 10px;
    background-color: #ccc;
    margin-top: 50px;
    border-radius: 3px;
  }
  
  .progress {
    height: 10px;
    background-color: #D62027;
    border-radius: 3px;
  }
  
  .slider-nav {
    display: flex;
    margin-top: 20px;
  }
  
  .slider-nav button {
    border: 2px solid #D62027;
    background-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 100px;
    color: #D62027;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.5s;
  }
  
  .slider-nav button:hover {
    background-color: #D62027;
    color: white;
  }

  /* Custom scrollbar styling */
  ::-webkit-scrollbar {
    width: 20px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #D62027; /* Bery Social Red */
    border-radius: 20px;
    border: 3px solid #f1f1f1;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b91515;
  }

  /* Filler Section */
  .filler-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 50px 50px;
  }
  
  .left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: left;
  }
  
  .line-item {
    font-family: 'segoescript';
    font-size: 3.5rem;
    font-weight: normal;
    position: relative;
  }
  
  
  .line-item.active {
    font-weight: bold;
    background-color: #D62027;
    border-radius: 5px;
    max-width: 450px;
    left: -50px;
    color: white;
    padding: 0px 0px 0px 50px;
    right:50px
  }
  
  .right-image {
    position: absolute;
    top: 80px;
    right: -50px;
  }
  
  .right-image img {
    width: max-content;
    height: auto;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 225px;
    margin-top: 40px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #808080;
    letter-spacing: 5px;
    font-family: 'Poppins', sans-serif;
  }
  
  .stat-item p {
    font-size: 2rem;
    color: #808080;
    letter-spacing: 2px;
    font-weight: 300;
  }

  /* Testimonials Section */
  .testimonials-section {
    text-align: center;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  .section-title {
    font-family: 'segoescript';
    font-size: 3.5rem;
  }

  .testimonial {
    padding: 60px;
    border-radius: 15px;
    margin: 15px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .quote-icon {
    font-size: 8rem;
    color: #D62027;
    position: absolute;
    top: -50px;
    left: -20px;
    font-family: 'Poppins', sans-serif;
  }

  .author {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-top: 20px;
    font-size: 20px;
  }

  .author span {
    font-weight: normal;
    font-size: 20px;
    color: #999;
  }

  /* Slick Arrow Styling */
  .slick-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #E63946;
    border-radius: 50%;
    color: #E63946;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .slick-dotted.slick-slider {
    height: auto;
  }

  .slick-arrow:hover {
    background-color: #E63946;
    color: #fff;
  }

  .slick-arrow svg {
    stroke: #E63946;
    width: 24px;
    height: 24px;
  }

  .slick-arrow:hover svg {
    stroke: #fff;
  }

  /* Custom Pagination Dots */
  .slick-dots {
    bottom: -30px;
  }

  .slick-dots li button:before {
    font-size: 12px;
    color: #E63946;
  }

  .slick-dots li.slick-active button:before {
    color: #E63946;
    opacity: 1;
  }

  .contact-section {
    background-color: #d62027;
    color: #fff;
    text-align: center;
    padding: 20px;
  }

  .contact-section h2 {
    font-size: 3rem;
    margin: 50px;
    font-family: 'segoescript';
  }

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 150px;
    position: relative;
  }

  .form-container {
    background: #fff;
    color: #070808;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    width: 40vw;
    min-width: 300px;
    z-index: 10;
  }

  .form-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #070808;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
  }

  .form-container p {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
    letter-spacing: 3px;
    
  }

  form {
    display: flex;
    flex-direction: column;
  }

  input, select {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #070808;
  }

  button {
    background-color: #d62027;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    max-width: fit-content;
    padding: 20px 50px;
    transition: background-color 0.5s;
  }

  button:hover {
    background-color: #070808;
  }

  .map-image {
    background: url('../images/map.png') no-repeat center center;
    background-size: cover;
    width: 50vw;
    height: 700px;
    border-radius: 10px;
    margin-left: -100px;
  }

  /* Footer Styles */
  .footer {
    padding: 70px 20px 10px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    gap: 60px;
    margin-bottom: 30px;
  }

  .social-icons a {
    transition: color 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    color: #333;
  }

  .social-icons a:hover {
    color: #AF2025;
    opacity: 1;
  }

  .social-icons span {
    font-size: 50px;
    color: #999;
  }

  .footer2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
  }

  .footer-links a {
    color: #333;
    text-decoration: none;
    margin-right: 40px;
    font-weight: 500;
    opacity: 0.7;
  }

  .footer-links a:hover {
    opacity: 1;
    color: #D62027;
  }

  .footer-logo {
    text-align: center;
    flex-grow: 1;
    max-width: fit-content;
  }

  .footer-logo img {
    height: 75px;
    margin: 0 auto;
  }

  .footer-location {
    color: #000;
    opacity: 0.7;
    font-weight: 500;
  }

  .footer p {
    font-size: .7rem;
  }

  .footer-location p {
    font-size: 1rem;
  }

  .footer-copyright {
    text-align: left;
    margin-top: 10px;
    font-size: 12px;
    color: #000;
    width: 61%;
    padding-left: 100px;
  }

  .button-c {
    background-color: #d62027;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    max-width: fit-content;
    padding: 20px 50px;
    transition: background-color 0.5s;
  }

  .overlay-f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal Style */
  .popup-modal {
    background: #fff;
    color: #070808;
    padding: 50px;
    border-radius: 10px;
    width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
  }
  
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #070808;
  }
  
  .popup-modal h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .popup-modal p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  input,
  select {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .submitbutton {
    background-color: #d62027;
    color: #fff;
    padding: 20px 100px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.5s;
  }
  
  .submitbutton:hover {
    background-color: #070808;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer2 {
      flex-direction: row;
      text-align: center;
      padding: 20px;
    }

    .footer-logo {
      margin: 20px 0;
      margin-left: 0;
    }

    .footer-links a {
      margin-bottom: 20px;
      display: block;
    }

    .social-icons {
      font-size: 60px;
      gap: 30px;
    }

    .social-icons span {
      font-size: 30px;
    }

    .container {
      flex-direction: column;
      margin: 20px;
    }

    .form-container {
      width: 80%;
    }

    .map-image {
      display: none;
    }

    h2 {
      font-size: 2.5rem;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .testimonials-section {
      padding: 50px 20px;
    }

    .line-item {
      font-size: 2.5rem;
    }
  
    .stats {
      gap: 100px;
    }
  
    .stat-item h2 {
      font-size: 2rem;
    }
  
    .stat-item p {
      font-size: 1.5rem;
    }
  
    .right-image img {
      display: none;
    }
  
    .left-content {
      text-align: center;
    }
  
    .line-item.active {
      max-width: none;
      width: 100%;
    }

    .header {
      padding: 10px 20px;
    }
  
    .logo img {
      width: 150px; /* Adjust the logo size for mobile */
    }
  
    .nav-links {
      display: none;
    }
  
    .right {
      display: none; /* Hide social icons and button on mobile */
    }
  
    .hamburger {
      display: block;
    }

    h1 {
      font-size: 3rem;
      text-align: center;
    }
  
    .carousel-container img {
      max-height: 120px;
    }

    .hero-section {
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .portfolio-text {
      max-width: 35vw;
    }

    .left-section {
      padding: 30px;
      text-align: center;
    }

    .footer-copyright {
      padding-left: 20px;
    }

    .popup-modal {
      width: 80%;
      padding: 40px;
    }
  
    .popup-modal h1 {
      font-size: 1.8rem;
    }
  
    .popup-modal p {
      font-size: 0.9rem;
    }
  
    input,
    select {
      padding: 12px;
      font-size: 14px;
    }
  
  
    .close-button {
      font-size: 20px;
    }

    .submitbutton {
      font-size: 14px;
      padding: 20px 60px;
    }

  }

  @media (max-width: 768px) {
    .footer {
      padding: 50px 20px 10px 20px;
    }

    .hero-section {
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .footer2 {
      padding: 0;
      margin-top: 20px;
    }

    .footer-logo img {
      height: 50px;
    }

    .social-icons {
      font-size: 50px;
      gap: 20px;
    }

    .footer-links a {
      margin-right: 20px;
    }

    .form-container {
      width: 90%;
      padding: 30px;
    }

    .form-container h1 {
      font-size: 2rem;
    }

    .form-container p {
      font-size: 0.9rem;
    }

    .map-image {
      display: none;
    }

    .filler-section {
      padding: 20px 20px;
    }
  
    .left-content {
      text-align: center;
    }
  
    .line-item {
      font-size: 1.8rem;
    }
  
    .stats {
      flex-direction: column;
      gap: 50px;
      margin-top: 50px;
    }
  
    .stat-item h2 {
      font-size: 1.8rem;
    }
  
    .stat-item p {
      font-size: 1.2rem;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .slick-prev {
      left: -40px;
    }

    .slick-next {
      right: -40px;
    }

    .carousel-container {
      max-width: 100%;
    }
  
    .carousel-container img {
      max-height: 100px;
    }
  
    h1 {
      font-size: 2.5rem;
    }

    .left-section {
      padding: 20px;
      text-align: center;
    }

    .footer-copyright {
      padding: 0px;
    }

    .popup-modal {
      width: 90%;
      padding: 30px;
    }
  
    .popup-modal h1 {
      font-size: 1.6rem;
    }
  
    .popup-modal p {
      font-size: 0.9rem;
    }
  
    input,
    select {
      padding: 10px;
      font-size: 14px;
    }
  
  
    .close-button {
      font-size: 18px;
      padding: 10px;
    }

    .submitbutton {
      font-size: 12px;
      padding: 20px 60px;
    }

    .popup-modal {
      width: 80%;
    }
  }

  @media (max-width: 480px) {
    .footer2 {
      padding: 10px 0;
    }
    .right-section {
      display: none;
    }

    .service-card {
      padding: 20px;
      width: 410px;
    }

    .footer-copyright {
      padding: 10px;
    }
    .submitbutton {
      padding: 15px 100px;
    }

    .button-c {
      padding: 20px 100px;
      font-size: 14px;
      max-width: none;
    }

    .portfolio-text {
      max-width: fit-content;
      padding: 10px;
    }

    .footer-location p {
      font-size: 12px;
    }

    .footer-links a {
      font-size: 12px;
      font-weight: 300;
    }

    .location {
      font-size: 1rem;
    }
    .thick-line {
      width: 50px;
      height: 5px;
      margin-bottom: 8px;
    }

    .hero-section {
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .progress {
      max-width: fit-content;
    }

    .portfolio-container {
      flex-direction: column;
    }

    .portfolio-section {
      padding: 50px 20px;
      height: auto;
    }

    .portfolio-carousel {
      height: auto;
    }

    .services-section {
      padding: 50px 20px;
    }
    
    .slick-slider {
      height: auto;
    }
    .left-section {
      padding: 10px;
      text-align: center;
    }

    .explore-button {
      margin-top: 10px;
      padding: 10px 60px;
      font-size: 14px;
    }

    .footer-links a {
      display: block;
      margin-right: 0;
      margin-bottom: 10px;
    }

    .social-icons {
      font-size: 30px;
      gap: 15px;
    }

    .form-container {
      width: 100%;
      padding: 30px;
    }

    .form-container h1 {
      font-size: 2rem;
    }

    .map-image {
      display: none;
    }

    .carousel-container img {
      max-height: 100px;
    }

    .social-icons span {
      color: #ccc;
    }
  
    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 2rem;
      margin: 0;
    }
  
    p {
      font-size: 1rem;
      font-weight: 300;
    }

    .popup-modal {
      width: 75%;
      padding: 20px;
    }

  
    .popup-modal h1 {
      font-size: 1.4rem;
      text-align: left;
    }
  
    .popup-modal p {
      font-size: 0.8rem;
    }
  
    input,
    select {
      padding: 8px;
      font-size: 12px;
    }
  
  
    .close-button {
      font-size: 16px;
    }

  }

  