/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
  }
  
  .page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Header and Logo */
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding-top: 60px;
    width: 100%;
  }
  
  .logo-container {
    margin-bottom: 60px;
  }
  
  .logo {
    width: 300px;
    height: 89px;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1520px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 984px;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    .hero-content {
      padding: 0 20px;
    }
  }
  
  .hero-title {
    color: #212121;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  @media (max-width: 640px) {
    .hero-title {
      font-size: 28px;
    }
  }
  
  .hero-subtitle {
    color: #212121;
    font-size: 20px;
    line-height: 28px;
  }
  
  @media (max-width: 640px) {
    .hero-subtitle {
      font-size: 16px;
    }
  }
  
  .hero-description {
    color: #212121;
    font-size: 20px;
    line-height: 28px;
  }
  
  @media (max-width: 640px) {
    .hero-description {
      font-size: 16px;
    }
  }
  
  .contact-button {
    padding: 16px;
    border-radius: 100px;
    color: #fff;
    border: 1px solid #1b751d;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    min-width: 214px;
    background-color: #1b751d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }
  
  .contact-button:hover {
    background-color: #156219;
  }
  
  /* Image Gallery */
  .image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
  
  @media (max-width: 991px) {
    .image-gallery {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        scrollbar-width: none; /* Firefox */
    }
    
    .image-gallery::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
  }
  
  .gallery-card {
    width: 350px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: #ffcfcf;
    margin: 0;
    scroll-snap-align: center;
  }
  
  .gallery-card:first-child {
    border-radius: 0 24px 24px 0;
  }
  
  .gallery-card:last-child {
    border-radius: 24px 0 0 24px;
  }
  
  @media (min-width: 1921px) {
    .gallery-card:first-child,
    .gallery-card:last-child {
        border-radius: 24px;
    }
  }
  
  @media (max-width: 991px) {
    .gallery-card {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
  }
  
  @media (max-width: 640px) {
    .gallery-card {
        width: 280px;
        height: 360px;
        scroll-snap-align: center;
    }
  }
  
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Features Section */
  .features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1920px;
    margin: 140px 0;
    padding: 0 200px;
  }
  
  @media (max-width: 1200px) {
    .features-section {
      padding: 0 20px;
    }
  }
  
  .section-title {
    color: #212121;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .features-container {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .features-container {
      flex-direction: column;
    }
  }
  
  .feature-card {
    display: flex;
    padding: 36px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 36px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #1b751d;
    flex: 1;
    background-color: #fff;
  }
  
  @media (max-width: 640px) {
    .feature-card {
      padding: 24px;
    }
  }
  
  .feature-image {
    width: 240px;
    height: 240px;
  }
  
  @media (max-width: 640px) {
    .feature-image {
      width: 160px;
      height: 160px;
    }
  }
  
  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .feature-title {
    color: #212121;
    font-size: 24px;
    font-weight: 700;
  }
  
  .feature-description {
    color: #5b5b5b;
    font-size: 20px;
  }
  
  /* Advertising Services */
  .advertising-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0 200px;
    max-width: 1920px;
  }
  
  @media (max-width: 1200px) {
    .advertising-services {
      padding: 0 20px;
    }
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .service-item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    background-color: #e0ffe0;
  }
  
  @media (max-width: 640px) {
    .service-item {
      padding: 16px;
    }
  }
  
  .service-icon {
    font-size: 40px;
    font-weight: 700;
  }
  
  .service-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .service-content ul {
    padding-left: 20px;
    margin: 0;
    list-style-position: outside;
  }
  
  .service-title {
    color: #212121;
    font-size: 20px;
    font-weight: 600;
  }
  
  .service-description {
    color: #5b5b5b;
    font-size: 16px;
  }
  
  /* Dashboard Section */
  .dashboard-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, #e0ffe0 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    margin: 140px 0;
    padding: 0 200px;
  }

  @media (max-width: 991px) {
    .dashboard-section {
      padding: 100px;
    }
  }

  .dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1262px;
  }
  
  .dashboard-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  
  .decoration-top {
    width: 25%;
    height: auto;
    aspect-ratio: 1;
    position: absolute;
    right: -15%;
    top: -15%;
    transform: rotate(0.64deg);
  }
  
  .decoration-bottom {
    width: 30%;
    height: auto;
    aspect-ratio: 1;
    position: absolute;
    left: -15%;
    bottom: -15%;
  }

  @media (max-width: 768px) {
    .decoration-top {
      right: -10%;
      top: -10%;
    }
    
    .decoration-bottom {
      left: -10%;
      bottom: -10%;
    }
  }
  
  /* Our Services Section */
  .our-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1920px;
    padding: 0 200px;
    margin-bottom: 140px;
  }
  
  @media (max-width: 991px) {
    .our-services {
      padding: 0 20px;
    }
  }
  
  .services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .services-showcase {
      flex-direction: column;
    }
  }
  
  .showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
  }
  
  .showcase-item.cybersecurity,
  .showcase-item.it-solutions,
  .showcase-item.big-data {
    min-height: 480px;
  }
  
  .showcase-item.cybersecurity {
    flex: 0 0 calc(49% - 12px);
    background: url(images/cybersecurity.jpg) center;
    background-size: cover;
    background-position-y: -224px;
  }
  
  .showcase-item.it-solutions {
    flex: 0 0 calc(25.5% - 12px);
    background: url('images/1 1.png') center center/cover no-repeat;
    background-color: #e0ffe0;
    background-position-y: -40px;
  }
  
  .showcase-item.big-data {
    flex: 0 0 calc(25.5% - 24px);
    background: url('images/big-data.jpg') center center/cover no-repeat;
  }
  
  .showcase-item.software-dev {
    flex: 0 0 calc(66% - 12px);
    display: flex;
    justify-content: space-between;
    background-color: #e0ffe0;
    height: 364px;
    overflow: hidden;
    padding: 0;
    position: relative;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 36px;
  }
  
  .showcase-item.automation {
    flex: 0 0 calc(34% - 12px);
    background: url('images/cube.png') top right no-repeat;
    background-color: #1B751D;
    height: 364px;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .showcase-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
  }
  
  .showcase-list {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
  }
  
  .showcase-title {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 12px;
  }
  
  .showcase-description {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
  }
  
  .software-text-container {
    padding: 40px;
    padding-right: 0;
    width: 554px;
    max-width: 55%;
    display: flex;
    align-items: flex-start;
    height: 100%;
  }
  
  .software-dev .showcase-content {
    position: static;
    max-width: 554px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }
  
  .software-dev .showcase-title {
    color: #000;
    margin-bottom: 0;
    font-size: 28px;
  }
  
  .software-dev .showcase-description {
    color: #5B5B5B;
  }
  
  .service-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #5b5b5b;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 5px;
  }
  
  .service-list li {
    margin-bottom: 8px;
  }
  
  .service-list li:last-child {
    margin-bottom: 0;
  }
  
  .it-solutions .showcase-title,
  .it-solutions .showcase-description {
    color: #212121;
  }
  
  .it-solutions .showcase-title {
    color: #212121;
  }
  
  .it-solutions .showcase-description {
    color: #5B5B5B;
  }
  
  .mockup-container {
    position: relative;
    width: 40%;
    min-width: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    padding-right: 25px;
  }
  
  .mockup-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -1px;
  }
  
  .automation {
    flex: 0 0 calc(50% - 12px);
    padding: 24px;
    background-color: #1B751D;
  }
  
  .automation .showcase-content {
    position: static;
    max-width: 444px;
  }
  
  .automation .showcase-title {
    color: #fff;
  }
  
  .automation .showcase-description {
    color: #fff;
  }
  
  @media (max-width: 1200px) {
    .cybersecurity, .big-data, .it-solutions {
      flex: 0 0 calc(50% - 12px);
    }
    
    .software-dev, .automation {
      flex: 0 0 100%;
    }
    
    .software-dev {
      height: 450px;
    }
    
    .software-text-container {
      width: 50%;
    }
    
    .mockup-main {
      right: -30px;
      width: 450px;
    }
    
    .mockup-screen {
      right: 35px;
      width: 380px;
    }
  }
  
  @media (max-width: 768px) {
    .cybersecurity, .big-data, .it-solutions,
    .software-dev, .automation {
      flex: 0 0 100%;
    }
    
    .software-dev {
      height: 600px;
      flex-direction: column;
    }
    
    .software-text-container {
      width: 100%;
      padding: 36px;
      max-width: 100%;
      height: auto;
    }
    
    .service-list {
      padding-left: 20px;
    }
    
    .showcase-item.software-dev {
      flex-direction: column;
    }
    
    .software-text-container {
      width: 100%;
    }
    
    .mockup-container {
      width: 60%;
      margin: 0 auto;
      align-self: center;
    }
  }
  
  @media (max-width: 480px) {
    .mockup-container {
      width: 80%;
    }
  }
  
  /* Contact Section */
  .contact-section {
    width: 100%;
    height: 380px;
    background: linear-gradient(0deg, #e3ffe3 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
  }
  
  .contact-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  
    position: relative;
  }
  
  .contact-leaf {
    position: absolute;
    width: 198px;
    height: auto;
    right: calc(50% + 443px);
    bottom: calc(50% + 13px);
  }
  
  .contact-cloud {
    position: absolute;
    width: 192px;
    height: auto;
    right: calc(50% - 548px);
    bottom: calc(50% - 207px);
  }
  
  @media (max-width: 1200px) {
    .contact-leaf,
    .contact-cloud {
        display: none;
    }
  }
  
  @media (max-width: 640px) {
    .contact-container {
      width: 90%;
      padding: 0 20px;
    }
  }
  
  .contact-title {
    color: #212121;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }
  
  @media (max-width: 640px) {
    .contact-title {
      font-size: 28px;
    }
  }
  
  .contact-subtitle {
    color: #5b5b5b;
    font-size: 20px;
    text-align: center;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .contact-row {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #212121;
    font-size: 18px;
  }
  
  .contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #212121;
    text-decoration: none;
  }
  
  .contact-link:hover {
    color: #1b751d;
  }
  
  .contact-icon {
    font-size: 40px;
    font-weight: 700;
  }
  
  /* Footer */
  .site-footer {
    width: 100%;
    padding: 64px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 79px;
    background-color: #212121;
  }
  
  @media (max-width: 640px) {
    .site-footer {
      padding: 40px 20px;
    }
  }
  
  .footer-logo {
    width: 154px;
    height: 46px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  @media (max-width: 640px) {
    .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  
  .copyright {
    color: #fff;
    font-size: 16px;
  }
  
  .footer-links {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  @media (max-width: 640px) {
    .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  .footer-link {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }
  
  .showcase-item.software-dev {
    position: relative;
    display: flex;
    overflow: hidden;
  }
  
  .software-text-container {
    flex: 1;
    padding: 20px;
    z-index: 2;
  }
  
  .mockup-container {
    position: relative;
    width: 40%;
    min-width: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
  }
  
  .mockup-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -1px;
  }
  
  @media (max-width: 768px) {
    .showcase-item.software-dev {
      flex-direction: column;
    }
    
    .software-text-container {
      width: 100%;
    }
    
    .mockup-container {
      width: 60%;
      margin: 0 auto;
      align-self: center;
    }
  }
  
  @media (max-width: 480px) {
    .mockup-container {
      width: 80%;
    }
  }
  
  @media (max-width: 1400px) {
    .services-showcase {
      flex-direction: column;
    }

    .showcase-item.cybersecurity,
    .showcase-item.it-solutions,
    .showcase-item.big-data,
    .showcase-item.software-dev,
    .showcase-item.automation {
      flex: 0 0 100%;
      min-height: 400px;
      position: relative;
    }

    .showcase-item.cybersecurity {
      background-position: center center;
    }

    .showcase-item.it-solutions {
      background: url('images/stick.png') no-repeat;
      background-color: #e0ffe0;
      background-position: right -100px;
      background-size: auto 100%;
    }

    .showcase-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
    }

    .showcase-item.automation .showcase-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      justify-content: flex-end;
    }

    .software-dev {
      height: auto;
      min-height: 500px;
    }

    .software-text-container {
      width: 100%;
      max-width: 100%;
      padding: 40px;
    }

    .mockup-container {
      width: 40%;
      margin: 0;
      padding-right: 25px;
    }

    .showcase-title {
      font-size: clamp(20px, 2.5vw, 24px);
    }

    .showcase-description {
      font-size: clamp(14px, 1.8vw, 16px);
    }
  }
  
  @media (max-width: 768px) {
    .software-dev {
      min-height: auto;
    }

    .showcase-item.software-dev {
      flex-direction: column;
    }

    .software-text-container {
      padding: 30px;
    }

    .mockup-container {
      width: 60%;
      margin: 0 auto;
      align-self: center;
    }
  }
  
  @media (max-width: 480px) {
    .mockup-container {
      width: 80%;
    }

    .software-text-container {
      padding: 20px;
    }
  }
  