@import url(https://fonts.googleapis.com/css?family=Overpass:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

/* VARIABLES */
:root {
    --primary-color: #000000;
    --secondary-color: #111111;
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Overpass', sans-serif;
}

/* RESET DEFAULT STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    margin-bottom: 1rem;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: var(--primary-color);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.btn {
    display: inline-block;
    max-width: max-content;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #a03dd1;
}

.btn-secondary {
        display: block;
        padding: 6px 12px;
        text-decoration: none;
        color: rgb(212, 230, 242);
        background-color: #195E8E;
        border-radius: 5px;
        font-size: 1rem;
        transition: all 0.4s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    /* color: #fff; */
}

.section-subheading {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 3rem;
    max-width: 800px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-heading.left {
    margin-right: auto;
}

.section-heading.right {
    margin-left: auto;
}



/* GLOBAL STYLES */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}




body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    color: var(--secondary-color);
}

section {
    position: relative;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;

}

/* HEADER */
header {
    padding: 0rem 0;
    width: 100%;
    position: absolute;
    z-index: 999;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 0 10px #bfa454;
}

.header__logo img {
    width: 300px;
}

.header__menu {
    gap: 0.3rem;
}

.header__menu li a {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

          /* Reset default list styling */
          .header__menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            /* gap: 5%; Space between menu items */
            align-items: center;
          }
          
          /* Style individual menu items */
          .header__menu li {
            margin: 0;
            padding: 0;
          }
          
          /* Style the links */
          .header__menu a {
            display: block;
            padding: 6px 12px;
            text-decoration: none;
            color: #333;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.4s ease;
          }
          
          /* Different background colors and borders for each nav item */
          .header__menu li a { 
            border: 1px solid #195E8E;
            color: #195E8E;
        }
        
        /* Hover effects */
        .header__menu a:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            background-color: #195E8E;
        }
        
        /* Active state */
        .header__menu li a.active {
            border: 2px dashed;
            border-color: rgb(212, 230, 242);
            background-color: #195E8E;
            color:rgb(212, 230, 242);
        }

.header__menu li a:hover {
    color: #FFC300;
}

header .right {
    gap: 1rem;
}

.menu-btn {
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
}

.hero__content {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero__content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero__content .btn {
    margin-top: 1rem;
}

.hero__img {
    width: 100%;
    margin-bottom: 2rem;
    /* align-items: center; */
}

.gradient {
    height: 100%;
    width: 100%;
    background-image: 
        radial-gradient(at 87% 21%, #195E8E 0px, transparent 60%),
        radial-gradient(at 27% 57%, #FFC300 0px, transparent 60%),
        radial-gradient(at 52% 99%, #011638 0px, transparent 20%),
        radial-gradient(at 10% 29%, #FFFFFF 0px, transparent 20%),
        radial-gradient(at 97% 96%, #F6F5F2 0px, transparent 20%),
        radial-gradient(at 33% 50%, #000000 0px, transparent 20%);
    position: absolute;
    filter: blur(100px) saturate(150%);
    top: 80px;
    z-index: -1;
    opacity: 0.2;
}


/* ABOUT */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
  }
  
  .feature {
    flex: 1;
    margin: 1%;
    /* margin-top:10px; */
    min-width: 320px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .featura {
    flex: 50%;
    margin: 1;
    /* margin-top:10px; */
    min-width: 460px;
    /* max-width: 100%; */
    /* min-height: 100%; */
    box-sizing: border-box;
    margin-bottom: 0%;
  }
  
  /* Media query for responsiveness on small screens */
  @media (max-width: 768px) {
    .features {
      flex-direction: column;
      align-items: center;
    }
  
    .feature {
      max-width: 100%;
    }
    .featura {
      max-width: 384px;
      max-height:100%;
      padding-left: 2%;
      padding-right: 2%;
      /* margin-bottom:-50%; */
    }
  }
  .about__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #112288;
}

.feature__icon {
    font-size: 2rem;
    color: var(--color);
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature__text {
    font-size: 1rem;
    font-weight: 400;
}

.about__details {
    display: flex;
    gap: 2rem;
    margin-top: 5rem;
}

.about__details-content {
    width: 50%;
}

.about__details-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about__details-content p {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about__details-content .btn {
    margin-top: 1rem;
}

.about__details-img {
    width: 50%;
}

/* SERVICES */

#services .section-heading,
#services .section-subheading {
    text-align: right;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service__icon img {
    width: 50px;
    margin-bottom: 1rem;
}

.service__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service__text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service .arrow-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: auto;
    transition: transform 0.3s;
}

.service:hover .arrow-icon {
    transform: translateX(5px);
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 5rem;
}

.project {
    display: flex;
    gap: 10%;
    align-items: center;
}

.project:nth-child(2) {
    flex-direction: row-reverse;
}

.project__img {
    position: relative;
    min-width: 35%;
}

.project__img img {
    border-radius: 8px;
}

.project__img::after {
    content: "";
    position: absolute;
    top: -20px;
    width: 90%;
    height: 90%;
    border-radius: 8px;
    z-index: -1;
    border: 4px solid #f3eaed;
}

.project:nth-child(1) .project__img::after,
.project:nth-child(3) .project__img::after {
    left: -20px;
}

.project:nth-child(2) .project__img::after {
    border-color: #6fbee5;
    right: -20px;
}

.project:nth-child(3) .project__img::after {
    border-color: #fed440;
}

.project__category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.project__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.project__text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* TEAM */

.members {
    display: flex;
    gap: 3rem;
}
.member {
    flex: 1; /* Ensure members take up equal space */
}
.member:nth-child(2),
.member:nth-child(4) {
    margin-top: 5rem;
}

.member__img {
    margin-bottom: 1rem;
}

.member__content h1 {
    margin-bottom: 0.25rem;
}

.member__content p {
    opacity: 0.4;
    font-weight: 600;
}

/* TESTIMONIALS */
#testimonials {
    display: flex;
    align-items: center;
    gap: 5rem;
}

#testimonials .section-subheading {
    margin-bottom: 2rem;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    /* width: 70%; */
}

.quotes {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial__title {
    font-size: 2rem;
    padding-left: 0rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial__text {
    opacity: 0.8;
    margin-bottom: 3rem;
}

.testimonials__img img {
    max-height: 500px;
}

.testimonial__author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__author h3 {
    margin: 0;
}

.testimonial__author p {
    opacity: 0.5;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial__author::before {
    content: "";
    width: 15px;
    transform: translateY(-70%);
    border-bottom: 1px solid #111111;
}

.testimonials-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-navigation span {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials-navigation span.active {
    width: 30px;
}

/* CONTACT */

/* Flexbox for contact section */
.contact {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}
/* Align contact details and map side by side */
.contact-info {
    flex: 1;
    max-width: 50%;
}

.contact-map {
    flex: 1;
    max-width: 50%;
}
/* Adjust map size */
#map {
    width: 100%;
    height: 300px;
    border: 1px solid #ddd;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Defines two equal columns */
    grid-gap: 10px; /* Optional spacing between grid items */
  }
/* .contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
} */
 /* Make social media information bigger */
.contact-info .detail h3, .contact-info .detail p {
    font-size: 1.25rem; /* Increase font size */
}

.contact-info .detail a {
    font-size: 1.1rem; /* Increase the size of the links */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact {
        flex-direction: column; /* Stack content vertically on small screens */
        gap: 3rem;
    }

    .contact-info, .contact-map {
        max-width: 100%;
    }
}
/* Optional styles for social media links */
.grid-item:first-child a {
    margin: 0 10px; /* Add spacing between social media icons */
  }
.contact-form textarea {
    resize: none;
}

.contact-details {
    width: 50%;

}

.contact-details .text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-details .details {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

.contact-details .detail {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.detail__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    background: #fe6686;
}
/* Ensure the logo and text are aligned horizontally */
.detail {
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Vertically center the items */
    gap: 1rem; /* Add some spacing between the icon and the text */
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Optional: Adjust the icon size to make it proportionate to the text */
.detail i {
    font-size: 2.5rem; /* Adjust icon size */
     /* Adjust color if needed */
}

/* Adjust the font size of the social media text */
.detail__content h3 {
    margin: 0;
    font-size: 1.25rem; /* Make the title bigger */
    gap: 1.5rem;
}

.detail__content p {
    margin: 0;
    font-size: 2rem; /* Adjust the paragraph text size */

}


.detail:nth-child(2) .detail__icon {
    background-color: #54d6a1;
}

.detail:nth-child(3) .detail__icon {
    background-color: #fe9a3f;
}

.detail__content h3 {
    margin: 0;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.detail__content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.gradient-2 {
    height: 50%;
    width: 50%;
    background-image: radial-gradient(at 27% 37%,
            hsla(215, 98%, 61%, 1) 0px,
            transparent 0%),
        radial-gradient(at 52% 99%, hsla(354, 98%, 61%, 1) 0px, transparent 50%);
    position: absolute;
    filter: blur(100px) saturate(150%);
    top: 80px;
    z-index: -1;
    opacity: 0.2;
}

/* FOOTER */
footer {
    padding: 2rem 0;
}

.footer__content {
    display: grid;
    gap: 5rem;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer__logo {
    width: 300px;
    margin-bottom: 1rem;
}

.footer__text {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer__newsletter {
    position: relative;
}

.footer__newsletter input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #f3f9fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.footer__newsletter .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 3rem;
}

.footer__bottom-icons {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

.facebook {
    color: #3b5998;
}

.twitter {
    color: #00acee;
}

.instagram {
    color: #e4405f;
}

.linkedin {
    color: #0e76a8;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {

    /* GLOBAL */
    .container {
        padding: 0 1rem;
    }

    section {
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;

    }

    .section-heading {
        font-size: 2rem;
        .italic {
            font-style: italic;
          }
    }

    /* HEADER */
    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .header__menu.show {
        transform: translateX(0);
    }

    .header__menu li {
        margin: 1rem 0;
    }

    .menu-btn {
        display: block;
        z-index: 999;
    }

    /* HERO */
    #hero {
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
    
    .hero__content {
        width: 100%;
        text-align: center;
        /* align-items: center; */
    }
    
    .hero__content h1 {
        font-size: 2.5rem;
    }
    
    .hero__content .btn {
        margin: 0 auto;
    }
    
    .hero__img {
        /* text-align: right; */
        width: 100%;
        /* align-items: center; */
        /* margin-left: 100; */
    }

    /* ABOUT */
    .features {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature {
        padding: 1rem;
    }

    .about__details {
        flex-direction: column;
    }

    .about__details-content,
    .about__details-img {
        width: 100%;
    }

    /* PROJECTS */
    .project {
        flex-direction: column !important;
        gap: 2rem;
    }

    .project__img {
        width: 100%;
        max-width: 300px;

    }

    .project__title {
        font-size: 1.5rem;
    }

    /* TEAM */
    .members {
        flex-direction: column;
        text-align: center;
    }

    .member {
        margin: 0 !important;
    }

    .member__img img {
        max-width: 300px;
    }

    /* TESTIMONIALS */
    .testimonials__img {
        display: none;
    }

    .testimonials-wrapper {
        width: 100%;
    }

    /* CONTACT */
    .contact {
        flex-direction: column;

    }

    .contact-form,
    .contact-details {
        width: 100%;
    }

    /* FOOTER */
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

}

/* DESIGN ELEMENTS */
.design-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.design-elements img {
    position: absolute;
    max-width: 200px;
}

.design-elements .element-1 {
    width: 20px;
    bottom: 10%;
    left: 40%;
}

.design-elements .element-2 {
    width: 20px;
    bottom: 35%;
    left: -10%;
}

.design-elements .element-3 {
    width: 25px;
    top: 35%;
    right: -10%;
}

.design-elements .element-4 {
    width: 25px;
    top: 20%;
    right: 50%;
}

.design-elements .element-5 {
    width: 25px;
    top: 45%;
    right: 55%;
}

.design-elements .element-6 {
    width: 35px;
    bottom: 5%;
    right: 0;
}

.design-elements .element-7 {
    width: 35px;
    top: 25%;
    right: 10%;
}

.design-elements .element-8 {
    width: 35px;
    top: 85%;
    right: 20%;
}

.design-elements .element-9 {
    width: 25px;
    top: 40%;
    left: -10%;
}

.design-elements .element-10 {
    width: 35px;
    top: 10%;
    left: -20%;
}

.design-elements .element-11 {
    width: 25px;
    top: 80%;
    left: 0%;
}

.design-elements .element-12 {
    bottom: 10%;
    left: -10%;
}

.design-elements .element-13 {
    width: 25px;
    top: 15%;
    right: -10%;
}

.design-elements .element-14 {
    top: 15%;
    right: -10%;
}

.design-elements .element-15 {
    width: 100px;
    bottom: 10%;
    right: 20%;
}

.design-elements .element-16 {
    width: 25px;
    bottom: 20%;
    right: 25%;
}

.design-elements .element-17 {
    width: 25px;
    top: 10%;
    left: 25%;
}

.design-elements .element-18 {
    width: 25px;
    bottom: -15px;
    right: 25%;
}

.design-elements .element-19 {
    width: 100px;
    top: -15px;
    left: 10%;
}

.design-elements .element-20 {
    width: 25px;
    top: 10px;
    left: 14%;
}

.testimonial {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px;
  }
  
  .testimonial-left {
    flex-direction: row;
  }
  
  .testimonial-right {
    flex-direction: row;
  }
  
  .testimonial-text {
    width: 60%;
    padding: 20px;
  }
  
  .testimonial-image {
    width: 30%;
    text-align: center;
  }
  
  .testimonial-image img {
    width: 100%;
    max-width: 240px; /* Sesuaikan ukuran gambar */
    border-radius: 45%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .testimonial {
      flex-direction: column; /* Stack elements vertically */
      text-align: center; /* Center the text for better readability */
    }
  
    .testimonial-text {
      width: 100%; /* Make text take full width */
      padding: 10px 20px; /* Adjust padding for readability */
    }
  
    .testimonial-image {
      width: 60%; /* Reduce image width for better balance */
      max-width: 180px; /* Limit image size */
      margin-bottom: 15px; /* Add space between image and text */
    }
  }
  