
@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?37927580');
    src: url('../fonts/fontello.eot?37927580#iefix') format('embedded-opentype'),
         url('../fonts/fontello.woff2?37927580') format('woff2'),
         url('../fonts/fontello.woff?37927580') format('woff'),
         url('../fonts/fontello.ttf?37927580') format('truetype'),
         url('../fonts/fontello.svg?37927580#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-twitter:before { content: '\f099'; } /* '' */
  .icon-facebook:before { content: '\f09a'; } /* '' */
  .icon-gplus:before { content: '\f0d5'; } /* '' */
  .icon-linkedin:before { content: '\f0e1'; } /* '' */
  .icon-up:before { content: '\f176'; } /* '' */
  
  
  /* ==============================================
     CUSTOM RESETS
  ================================================== */
  a {
    transition: color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out;
  }
  
  a:focus,
  a:hover {
    outline: none;
    text-decoration: none;
  }
  
  h4 {
    font-size: 30px;
  }
  
  /* Buttons */
  .btn {
    min-width: 145px;
    line-height: 50px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    transition: box-shadow 0.25s ease-in-out;
    -moz-transition: box-shadow 0.25s ease-in-out;
    -webkit-transition: box-shadow 0.25s ease-in-out;
    -o-transition: box-shadow 0.25s ease-in-out;
    -ms-transition: box-shadow 0.25s ease-in-out;
  }
  
  .btn-fill {
    color: #fff;
    background-color: #212121;
  }
  
  .btn-fill:hover,
  .btn-fill:focus {
    color: #fff;
  }
  
  .btn:hover,
  .btn:focus {
    box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.15);
  }
  
  /* Input fields */
  .form-control {
    padding-left: 10px;
    border: 0;
    border-bottom: 1px solid #212121;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
  }
  
  textarea {
    margin-top: 40px;
    min-height: 200px;
    resize: none;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-bottom-color: #e1e1e1;
  }
  
  ::-moz-placeholder,
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
  
  
  /* ==============================================
     LAYOUT
  ================================================== */
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #212121;
  }
  
  .img-res {
    display: block;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  
  .visible-xxs {
    display: none;
  }
  
  /* Background-color */
  .gray-bg {
    background-color: #e1e1e1;
  }
/* ==============================================
   HEADER
================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 5;
  }
  
  .site-logo img {
    padding-bottom: 2px;
  }
  
  /* ==============================================
     NAVIGATION
  ================================================== */
  .navbar-nav > li > a {
    padding: 5px 0;
    font-weight: 600;
    color: #212121;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -webkit-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    -ms-transition: border-color 0.25s ease-in-out;
  }
  
  .navbar-nav.navbar-right {
    margin-right: 0;
  }
  
  .navbar-nav > li + li > a {
    margin-left: 40px;
  }
  
  /* Navigation Hover and Active States */
  .navbar-nav > li > a:hover,
  .navbar-nav > li.active > a,
  .nav > li > a:hover,
  .nav > li.active > a {
    background-color: transparent;
    border-bottom: 2px solid #212121;
  }
  
  .nav > li > a:focus {
    background-color: transparent;
  }
  
/* ==============================================
   HERO SECTION
================================================== */
.hero {
    background: url(../img/bg7.jpg) no-repeat center / cover;
    height: 100%;
    width: 100%;
    min-height: 700px;
  }
  
  .hero .container {
    position: relative;
    height: 100%;
  }
  
  .hero .col-md-6:first-child {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .hero .col-md-6:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  
  .hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
  }
  
  .job-title {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1;
  }
  
  .hero img {
    height: 600px;
  }
  
  /* ==============================================
     SITE MAIN SECTION
  ================================================== */
  .site-main {
    position: relative;
    margin-bottom: 100px;
    background-color: #fff;
    z-index: 1;
  }
  
  /* ==============================================
     SITE SECTION
  ================================================== */
  .site-section {
    padding-top: 120px;
  }
  
  .site-section h2,
  .site-section h3 {
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
  }
  
  .img-lines {
    margin: 15px 0 40px;
  }
  
  .site-section p {
    margin-bottom: 35px;
  }
/* ==============================================
   SECTION: SKILLS
================================================== */
.section-skills {
    padding-bottom: 120px;
  }
  
  .skill + .skill {
    margin-top: 50px;
  }
  
  .skill h4 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 0 15px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .progress {
    height: 15px;
    margin-bottom: 0;
    border-radius: 50px;
    background-color: #dfdfdf;
    box-shadow: none;
  }
  
  .progress-bar {
    background-color: #212121;
    border-radius: 50px;
  }
  
  /* ==============================================
     SECTION: SERVICES
  ================================================== */
  .section-services {
    position: relative;
    padding-top: 220px;
  }
  
  .section-services:before {
    content: '';
    background: url(../img/services-bg.jpg) no-repeat fixed center / cover;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .overlay:after {
    content: '';
    width: 100%;
    height: 400px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .section-services .container {
    padding: 120px 100px;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 40px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .service h4 {
    margin: 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #212121;
  }
  
  .service p {
    color: #000;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* ==============================================
     SECTION: PORTFOLIO
  ================================================== */
  .section-portfolio {
    padding-bottom: 120px;
  }
  
  .portfolio-item {
    height: 280px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .section-portfolio .col-md-4:nth-last-child(-n+3) .portfolio-item {
    margin-bottom: 0;
  }
  
  .portfolio-item:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: background-color 0.25s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .portfolio-item:hover:before {
    background-color: rgba(33, 33, 33, 0.6);
  }
  
  .portfolio-item-info {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease-in-out, left 0.25s ease-in-out;
  }
  
  .portfolio-item:hover .portfolio-item-info {
    left: 40px;
    opacity: 1;
  }
  
  .portfolio-item-info h4 {
    margin: 0 0 20px;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
  }
  
  .portfolio-item-info a {
    padding: 6px 12px;
    font-size: 14px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  }
  
  .portfolio-item-info a:hover {
    color: #212121;
    background-color: #fff;
  }
  
  .section-portfolio .btn {
    margin-top: 10px;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    background-color: #212121;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease-in-out;
  }
  
  .section-portfolio .btn:hover {
    background-color: #000;
  }
  
  /* ==============================================
     MODAL
  ================================================== */
  .modal {
    z-index: 9999;
  }
  
  .modal-content {
    border-radius: 8px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .modal-header {
    position: relative;
    padding: 0;
    height: 500px;
  }
  
  .modal-header .close {
    position: absolute;
    right: 0;
    padding: 10px 15px;
    margin-top: 0;
    background-color: #fff;
    font-size: 18px;
    color: #212121;
    border-left: 1px solid #212121;
    border-bottom: 1px solid #212121;
    opacity: 1;
    transition: box-shadow 0.25s ease-in-out;
  }
  
  .modal-header .close:hover {
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.2);
  }
  
  .modal-body h4 {
    font-weight: 700;
  }
  
  .modal-footer {
    text-align: center;
  }
/* Section: Counters */
.section-counters {
    background: url(../img/counters-bg.jpg) no-repeat center center / cover;
    width: 100%;
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.section-counters:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

.section-counters h4 {
    color: #fff;
    margin: 25px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    z-index: 2;
}

.site-section p.counter {
    font-size: 100px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    z-index: 2;
}

/* Section: Form */
.section-form {
    padding-bottom: 120px;
}

.section-form .btn {
    margin-top: 40px;
    padding: 12px 25px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #3498db;
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.section-form .btn:hover {
    background-color: #2980b9;
}

/* Footer */
.site-footer {
    position: fixed;
    bottom: 0;
    padding: 30px 0;
    width: 100%;
    background-color: #212121;
    z-index: 1;
}

.icon {
    line-height: 40px;
    padding: 9px 11px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.icon + .icon {
    margin-left: 5px;
}

.icon:hover {
    background-color: #fff;
    color: #212121;
}

.site-footer a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

a.twitter-bg:hover {color: #55acee;}
a.facebook-bg:hover {color: #3b5998;}
a.gplus-bg:hover {color: #007bb5;}
a.linkedin-bg:hover {color: #dd4b39;}
a.icon-up-bg:hover {color: #212121;}

.footer {
    background-color: #282828;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #3498db;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons img {
    width: 30px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 12px;
}

.copyright {
    margin-bottom: 0;
    line-height: 40px;
    color: #fff;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #4CAF50;
}

footer a:hover {
    color: #ff6600;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Section: About */
.section-about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.section-about h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-about p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}
/* Tombol Download CV */
.btn.btn-fill {
    background-color: #333;
    color: white;
    padding: 14px 28px; /* Lebih lebar */
    border-radius: 6px; /* Sudut lebih membulat */
    text-decoration: none;
    font-weight: 600; /* Teks lebih tebal */
    font-size: 18px; /* Ukuran teks lebih besar */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.btn-fill:hover {
    background-color: #ff6600;
    transform: scale(1.05); /* Efek zoom saat hover */
}

/* Menambah garis pemisah */
.img-lines {
    width: 60px;
    margin-bottom: 30px; /* Jarak lebih banyak */
}

/* Untuk kolom teks */
.section-about h2 {
    font-size: 40px; /* Ukuran teks lebih besar */
    font-weight: 700; /* Teks lebih tebal */
    color: #333;
    margin-bottom: 25px; /* Jarak lebih banyak */
}

.section-about p {
    font-size: 20px; /* Ukuran teks lebih besar */
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px; /* Jarak bawah lebih banyak */
}

/* Tombol Download CV */
.btn.btn-fill {
    background-color: #333;
    color: white;
    padding: 14px 28px; /* Lebih lebar */
    border-radius: 6px; /* Sudut lebih membulat */
    text-decoration: none;
    font-weight: 600; /* Teks lebih tebal */
    font-size: 18px; /* Ukuran teks lebih besar */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.btn-fill:hover {
    background-color: #ff6600;
    transform: scale(1.05); /* Efek zoom saat hover */
}

/* Menambah garis pemisah */
.img-lines {
    width: 60px;
    margin-bottom: 30px; /* Jarak lebih banyak */
}

/* Gaya untuk judul Contact Me */
.contact-title {
    text-align: center;
    color: #3498db;
    font-size: 40px; /* Ukuran teks lebih besar */
    font-weight: bold;
    margin-bottom: 30px; /* Jarak lebih banyak */
    font-family: 'Arial', sans-serif;
}

/* Gaya untuk container form */
.contact-form {
    max-width: 900px; /* Lebar form lebih besar */
    margin: 0 auto;
    padding: 35px;
    background-color: #f4f8fb;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Gaya untuk input dan textarea */
.form-control {
    width: 100%;
    padding: 18px; /* Lebih tebal */
    margin: 18px 0; /* Jarak lebih besar */
    border: 1px solid #d1d9e6;
    border-radius: 12px; /* Sudut lebih membulat */
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.6);
    outline: none;
}

/* Gaya untuk textarea */
.message-box {
    height: 150px; /* Lebih besar */
}

/* Gaya untuk tombol */
.btn-border {
    width: 100%;
    padding: 18px; /* Lebih lebar */
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-border:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Responsif */
@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }

    .form-control {
        padding: 15px;
        font-size: 14px;
    }

    .btn-border {
        padding: 15px;
        font-size: 14px;
    }
}

.contact-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 18px;
    margin-bottom: 25px;
}

#contact {
    padding-top: 70px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-border {
    background-color: transparent;
    color: #007bff;
    border: 3px solid #007bff;
}

.btn-border:hover {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 576px) {
    .button-container {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
