@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&dispal=swap');
@import url('https://fonts.googleapis.com/css2?family=Rancho&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* width: 100%; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    background-color: #fff;
}

main {
    flex: 1;
    padding: 20px;
    margin-top: 140px;
}

#preloader {
    background: #fff url(/images/load.gif) no-repeat center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000000;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

#header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header ul li {
    list-style: none;
    margin-left: 20px;
    position: relative;
}

#header ul li a {
    text-decoration: none;
    display: flex;
    padding: 6px 15px;
    color: #094b65;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;

}

#header ul li .drop-down {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    width: 350px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

#header ul li:hover .drop-down {
    display: block;
}

#header ul li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-icon {
    font-size: 20px;
    position: relative;
    right: -5px;
    transform: rotate(0deg);
    transition: 0.1s ease-in-out all;
}

.drop-down li:hover {
    background: #094b65;
    color: #fff;
    border-radius: 0.5mm;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#header ul li .drop-down li {
    margin: 0;
    padding: 0;
}

#header ul li .drop-down li a {
    padding: 10px 15px;
    color: #094b65;
    display: block;
    text-align: left;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

#header ul li .drop-down li a:hover {
    background: #094b65;
    color: #fff;
}

#header ul li a:hover,
#header ul li a.active {
    background: #094b65;
    color: #fff;
}

.scrolling-text-container {
    display: flex;
    color: #094b65;
    margin: 0 65px -40px 0;
    align-items: center;
    background: #fff;
    margin-bottom: -40px;
}

.scrolling-text-container span {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    padding: 8px 20px;
    background: #094b65;
    color: #fff;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    font-weight: 600;
}

.slide-container {
    margin: 50px 0;
    /* margin-bottom: 30px; */
    position: relative;
    /* margin-top: 110px; */
    width: 100%;
    /* max-width: 1200px; */
    height: 0;
    padding-bottom: 56.25%;
    border: 3px solid #094b65;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.slide-container .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* position: relative; */
    /* overflow: hidden; */
}

.slide-container .slides img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}

.slide-container .slides img:not(.active) {
    top: 0;
    left: -100%;
}

span.next,
span.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: #eee;
    font-size: 24px;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}

span.next {
    right: 20px;
}

span.prev {
    left: 20px;
}

span.next:hover,
span.prev:hover {
    background-color: #094b65;
    opacity: 0.8;
    color: #fff;
}

.dotscontainer {
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
}

.dotscontainer .dot {
    width: 15px;
    height: 15px;
    margin: 0px 2px;
    border: 3px solid #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dotscontainer .active {
    background-color: #555;
}

@keyframes next1 {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}

@keyframes next2 {
    from {
        left: 100%;
    }

    to {
        left: 0%;
    }
}

@keyframes prev1 {
    from {
        left: 0%;
    }

    to {
        left: 100%;
    }
}

@keyframes prev2 {
    from {
        left: -100%;
    }

    to {
        left: 0%;
    }
}

.cta-container {
    background-color: #fff;
    color: #094b65;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #094b65;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #094b65;
    color: #fff;
}

.company-intro {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

.img-container {
    flex: 1;
}

.img-container img {
    margin-top: 120px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-intro {
    flex: 1;
}

.text-intro h1 {
    color: #094b65;
    font-size: 24px;
    margin-bottom: 20px;
}

.text-intro p {
    text-align: justify;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.profile-btn {
    background-color: #3586ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.profile-btn a {
    text-decoration: none;
    color: #fff;
}

.profile-btn:hover {
    background-color: #094b65;
}

.services-container {
    margin: 50px auto;
    padding: 40px 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: #094b65;
    margin-bottom: 10px;
}

.services-container>p {
    font-size: 18px;
    color: #047082;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    /* Mengubah ini dari 50% menjadi 8px untuk sudut yang sedikit melengkung */
    object-fit: cover;
    margin-right: 15px;
}

.service-card p {
    font-size: 16px;
    margin: 0;
    text-decoration: none;
    font-weight: 500;
}

/* kenapa milih kami (kelebihan yg dimiliki) */

.hero {
    background: linear-gradient(135deg, #094b65 0%, #0a6d8f 50%, #0b8fb9 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1em;
    max-width: 600px;
    margin: 0 auto 30px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 15px;
    background-color: #fff;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px;
    width: 30%;
    min-width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #094b65;
}

.feature-title {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #094b65;
}

.feature-card p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* client */

.client-section {
    text-align: center;
    padding: 50px 20px;
}

.client-section h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #094b65;
    font-weight: bold;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.client-logos a img {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.client-logos a:hover img {
    transform: scale(1.1);
}

.client-logos img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* info kontak pertama */
.infosingkat-container {
    max-width: 1000px;
    margin: 50px auto;
    background-color: #f9f9f9;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    gap: 30px;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-header h1 {
    color: #094b65;
    font-size: 2.2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #094b65;
    padding-bottom: 10px;
}

.info-header h2 {
    color: #094b65;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.info-header p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    margin-right: 15px;
    color: #094b65;
    font-size: 20px;
    width: 20px;
}

.info-item strong {
    color: #094b65;
    margin-right: 5px;
}

.map-container {
    flex: 1;
    margin-top: 70px;
    min-width: 300px;
    height: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

footer {
    /* background: linear-gradient(to bottom, #094b65, #0a658b); */
    background: #3586ff;
    width: 100%;
    min-height: 100px;
    margin-top: 100px;
    padding: 20px 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* overflow: hidden; */
}

footer .social-icon,
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social-icon li,
footer .menu li {
    list-style: none;
}

footer .social-icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5%;
}

footer .social-icon li a:hover {
    transform: translateY(-10px);
}

footer .menu li a {
    font-size: 1.1em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75s;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1em;
}

footer .wave {
    position: absolute;
    top: -100px;
    /* Sesuaikan posisi top agar gambar terlihat */
    left: 0;
    width: 100%;
    height: 100px;
    background: url('/images/wave.png');
    /* Pastikan path benar */
    background-size: 1000px 100px;
    /* Sesuaikan ukuran gambar */
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_2 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_2 3s linear infinite;
}

@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave_2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    height: 100vh;
    width: 80%;
    /* Make it responsive */
    max-width: 400px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.3s ease-in-out;
    padding-top: 60px;
}

.sidebar .dropdown .drop-down {
    display: none;
    padding-left: 20px;
}

.sidebar .dropdown.active .drop-down {
    display: block;
}

.sidebar .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar .dropdown-icon {
    transition: transform 0.3s ease;
}

.sidebar .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.sidebar.active {
    right: 0;
}

.sidebar li {
    width: 100%;
    padding: 10px 20px;
}

.sidebar a {
    width: 100%;
    display: block;
    color: #094b65;
    text-decoration: none;
    font-size: 1.1em;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.menu-button {
    display: none;
}

.agratek-news {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .agratek-news h2 {
    text-align: center;
    color: #094b65;
    font-size: 48px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
  }
  
  .agratek-news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #094b65;
  }
  
  .news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .news-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .news-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .news-card:hover img {
    transform: scale(1.05);
  }
  
  .news-content {
    padding: 25px;
  }
  
  .news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 20px;
  }
  
  .news-card h3 {
    font-size: 22px;
    color: #094b65;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .read-more-btn {
    display: inline-block;
    background-color: #094b65;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .read-more-btn:hover {
    background-color: #0a658b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 101, 139, 0.4);
  }

/* Tampilan Mobile */

@media (max-width: 1920px) {
    #header {
        padding: 30px 100px;
    }
    #header img {
        width: 350px;
        height: 110px;
    }

    .scrolling-text-container {
        margin: -59px 0 -40px 0px;
    }

    .slide-container {
        display: flex;
        justify-content: center;
    }

    .company-intro {
        max-width: 1200px;
        padding: 20px;
        gap: 40px;
    }

    .services-container {
        max-width: 1200px;
        padding: 40px 20px;
    }

    .infosingkat-container {
        max-width: 1000px;
        padding: 30px;
    }
}

@media (min-width: 1001px) and (max-width: 1328px) {
    #header {
        padding: 15px 2%;
    }

    #header ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    #header ul li {
        margin-left: 10px;
        margin-bottom: 5px;
    }

    #header ul li a {
        font-size: 14px;
        padding: 8px 12px;
    }

    #header img {
        max-width: 250px;
        max-height: 80px;
    }
    
    #header ul li .drop-down {
        width: 250px;
    }
  }
  
  /* Existing media query for screens larger than 901px */
  @media (min-width: 1001px) {
    #header {
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10000;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    

    #header .logo {
      margin-right: 20px;
    }
  
    #header ul {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin: 0;
      padding: 0;
      flex-wrap: nowrap; /* Prevent wrapping for consistent layout */
    }
  
    #header ul li {
      list-style: none;
      margin-left: 20px;
    }
  
    #header ul li a {
      text-decoration: none;
      color: #094b65;
      font-size: 18px;
      padding: 10px 20px;
      border-radius: 20px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    #header ul li a:hover,
    #header ul li a.active {
      background: #094b65;
      color: #fff;
    }
  
    #header ul li .drop-down {
      width: 350px;
    }
  
    .menu-button {
      display: none;
    }
  
    main {
      padding-top: 120px; /* Adjust based on your navbar height */
    }
  }
  
  /* Desktop (1329px and above) */
@media (min-width: 1329px) {
    #header {
        padding: 20px 5%; /* Maintain balanced padding */
    }

    #header ul li {
        margin-left: 25px; /* Space out menu items slightly */
    }

    #header ul li a {
        font-size: 20px; /* Increase font size for better readability */
        padding: 12px 20px; /* Adjust padding for a cohesive look */
        color: #094b65; /* Consistent color for text */
    }

    #header img {
        max-width: 320px; /* Slightly larger logo for visibility */
        max-height: 105px;
        transition: transform 0.3s ease; /* Add a smooth scaling effect */
    }

    #header img:hover {
        transform: scale(1.05); /* Slightly enlarge logo on hover */
    }

    #header ul li .drop-down {
        width: 300px; /* Keep dropdown width consistent */
    }

    #header ul li .drop-down li a {
        padding: 10px 15px;
        font-size: 18px; /* Increase font size in dropdown for readability */
        color: #094b65;
    }

    .scrolling-text-container {
        margin-top: -70px;
    }
}


  @media (max-width: 1418px) {

    #header img {
      width: 250px;
      height: 70px;
  }
}

  @media (max-width: 1001px) {
    #header ul li a {
        font-size: 10px;
        padding: 6px 12px;
      }

      #header img {
        width: 250px;
        height: 90px;
    }
  }

  /* Tablet (1245px to 1001px) */
@media (min-width: 1001px) and (max-width: 1245px) {
    #header {
        padding: 15px 2%;
        width: 100%; /* Ensure the header width is within the screen */
        box-sizing: border-box; /* Include padding in the element's width */
    }

    #header ul {
        flex-wrap: wrap; /* Allow items to wrap within the container */
        justify-content: flex-end; /* Align items to the right */
    }

    #header ul li {
        margin-left: 10px;
        margin-bottom: 5px;
    }

    #header ul li a {
        font-size: 14px; /* Reduce font size for better fit */
        padding: 8px 12px; /* Adjust padding for links */
    }

    #header img {
        max-width: 250px;
        max-height: 80px;
    }
    
    /* Ensure dropdown menu doesn't overflow */
    #header ul li .drop-down {
        width: 250px; /* Adjust width to fit smaller screens */
    }

    .scrolling-text-container{
        margin-top: -100px;
    }
}


@media (max-width: 1000px) {
    #header {
        padding: 12px;
    }

    #header img {
        width: 350px;
        height: 90px;
    }

    /* last update sampe sini aja bang */

    .scrolling-text-container {
        margin: -30px 20px -40px 0;
    }

    .slide-container {
        margin: 50px 20px 30px 0;
        padding-right: 100px;
    }

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .company-intro {
        flex-direction: column;
        padding: 20px;
    }

    .img-container img {
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .features {
        padding: 20px 10px;
    }

    .feature-card {
        width: calc(33.33% - 20px);
        margin: 10px;
        padding: 15px;
    }

    .feature-icon {
        font-size: 2em;
    }

    .feature-title {
        font-size: 0.9em;
    }

    .feature-card p {
        font-size: 0.8em;
    }

    .client-section {
        padding: 30px 10px;
    }

    .client-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .client-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logos img {
        max-width: 100%;
        height: auto;
    }

    .infosingkat-container {
        flex-direction: column
    }

    .map-container {
        height: 300px;
        margin-top: -30px;
    }

    .agratek-news h2 {
        font-size: 36px;
        margin-bottom: 40px;
      }
    
      .news-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
    
      .news-card h3 {
        font-size: 18px;
      }

      .news-card img {
        height: 340px;
        object-fit: cover;
      }
}

@media (max-width: 500px) {
    #preloader {
        background-size: 40%;
    }

    main {
        margin-top: 75px;
    }

    #header {
        padding: 7px;
    }

    #header img {
        width: 250px;
        height: 75px;
    }

    .sidebar {
        width: 100%;
        /* Mengubah lebar menjadi 100% */
        max-width: none;
        /* Menghapus batasan max-width */
        padding-top: 50px;
        /* Menyesuaikan padding atas jika diperlukan */
    }

    .sidebar li {
        padding: 8px 15px;
        /* Menyesuaikan padding untuk item menu */
    }

    .close-btn {
        top: 10px;
        /* Menyesuaikan posisi tombol tutup */
        right: 15px;
    }

    .scrolling-text-container {
        margin: 0 10px -40px 0px;
    }

    .slide-container {
        margin: 50px 10px 30px 0px;
        padding-right: 100px;
    }

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .company-intro {
        flex-direction: column;
        padding: 15px;
        margin-top: -50px;
    }

    .profile-btn {
        padding: 7px 17px;
        font-size: 12px;
    }

    .img-container img {
        margin-top: 30px;
    }

    .text-intro h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .text-intro p {
        text-align: justify;
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .cta-container h2 {
        font-size: 18px;
    }

    .cta-container p {
        font-size: 14px;
    }

    .services-container {
        padding: 20px 10px;
    }

    .services-container>p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .hero {
        border-radius: 20px;
    }

    .hero h1 {
        font-size: 1.6em;
    }

    .hero p {
        font-size: 1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card p {
        font-size: 14px;
    }

    .info-header h1 {
        font-size: 1.6em;
    }

    .info-header h2 {
        font-size: 1.2em;
    }

    .info-header p {
        font-size: 14px;
    }

    .features {
        padding: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: #ffffff;
    }

    .feature-icon {
        font-size: 1.8em;
        color: #094b65;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 1em;
        color: #094b65;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .feature-card p {
        font-size: 0.8em;
        line-height: 1.4;
        color: #333;
        text-align: center;
    }

    .client-section {
        padding: 20px;
    }

    .client-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logos img {
        max-width: 100%;
        height: auto;
    }

    .infosingkat-container {
        margin: 30px -10px;
        padding: 20px;
    }

    .info-header h1 {
        font-size: 1.6em;
    }

    .info-header h2 {
        font-size: 1.2em;
    }

    .info-header p {
        font-size: 14px;
    }

    .info-item {
        font-size: 14px;
    }

    .map-container {
        margin-top: -20px;
        height: 200px;
    }

    footer .social-icon {
        margin-top: -10px;
        margin-right: 10px;
    }

    footer .menu li {
        margin-right: 3px;
    }

    footer .menu li a {
        font-size: 0.7em;
        margin: 0 5px;
    }

    footer p {
        font-size: 0.5em;
        margin-left: 30px;
    }

    .agratek-news {
        margin: 50px auto;
        padding: 0 15px;
      }
    
      .agratek-news h2 {
        font-size: 32px;
        margin-bottom: 30px;
      }
    
      .news-container {
        grid-template-columns: 1fr;
        gap: 25px;
      }
    
      .news-card img {
        height: 180px;
      }
    
      .news-content {
        padding: 20px;
      }
    
      .news-date {
        font-size: 12px;
      }
    
      .news-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
      }

      .news-card img {
        height: 370px;
        object-fit: cover;
      }
    
      .read-more-btn {
        padding: 10px 15px;
        font-size: 14px;
      }
}