/*
Theme Name: Bitwise
Theme URI: https://armagan-soydan.com/
Author: Bitwise
Author URI: https://armagan-soydan.com/
Description: Bitwise Asset Management WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bitwise
Tags: https://armagan-soydan.com/
*/

:root {
  --color-primary: #3498db;    
  --color-secondary: #3498db;  
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    width: auto;
    min-width: 300px;
}

.video-controls button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: var(--color-primary);;
    border-radius: 4px;
    width: 0;
}

.time-display {
    color: white;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay p {
    font-size: 1.2rem;
    max-width: 850px;
    margin-bottom: 30px;
}



h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);;
}


.services-section {
    background-color: #fff;
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-primary);;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.services-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-box {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-left: 4px solid var(--color-primary);;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-number {
    background-color: #f8f1e0;
    color: var(--color-primary);;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.service-content {
    padding: 20px 30px;
    flex: 1;
}

.service-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.email-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.email-icon:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #e74c3c;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
}

.submit-btn {
    background-color: var(--color-primary);;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #c48c00;
}

.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.to-top.active {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: #c48c00;
    transform: translateY(-5px);
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader:before, .loader:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);;
    opacity: 0.6;
    animation: pulse 2s infinite ease-in-out;
}

.loader:after {
    animation-delay: -1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 0;
    }
}

.general-layout-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.general-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certificates-header h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-primary);;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.general-layout-content {
    max-width: 900px;
    margin: 0 auto;
}

.general-layout-text p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.layout-highlight {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-left: 4px solid var(--color-primary);;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layout-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.highlight-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.highlight-text p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.scroll-down {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-down span {
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-down i {
    font-size: 24px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.certificates-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
}

.certificates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certificates-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.certificates-header h2 {
    display: inline-block;
    background-color: #f9f3e0;
    color: var(--color-primary);;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 3px 10px rgba(230, 168, 32, 0.2);
}


.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.certificate-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.certificate-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.certificate-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--color-primary);;
}

.certificate-title {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.member-info {
    padding: 15px;
    text-align: center;
    border-top: 3px solid #ffcb6b;
}

.member-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.member-title {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--color-primary);;
}

.contact-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-transform: capitalize;
}

.contact-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--color-primary);;
    font-size: 18px;
}

.contact-text p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.main-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    text-align: center;
}

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

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: 5% auto;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

#lightboxImage {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

#lightboxCaption {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.profile-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}



.profile-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.profile-left {
    flex: 0 0 35%;
}

.profile-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border: 5px solid #f9f3e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-right {
    flex: 1;
}

.profile-info {
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.info-label {
    flex: 0 0 150px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.info-value {
    flex: 1;
    background-color: #f9f3e0;
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--color-primary);;
    font-weight: bold;
}

.profile-education,
.profile-career {
    margin-bottom: 25px;
}

.profile-education h3,
.profile-career h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.profile-education p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.career-period {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.period-year {
    flex: 0 0 100px;
    background-color: var(--color-primary);;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-right: 15px;
}

.period-desc {
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.profile-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-item {
    position: absolute;
    opacity: 0.7;
}

.left-flower {
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="%23e6a820" /></svg>') no-repeat;
    transform: rotate(-15deg);
}

.right-flower {
    top: 40px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23e6a820" /></svg>') no-repeat;
    transform: rotate(15deg);
}

.focus-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
}

.focus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.focus-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.focus-category-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 500px;
}

.focus-category {
    flex: 1;
    text-align: center;
    background-color: rgba(228, 228, 228, 0.5);
    border-radius: 8px;
    border: 2px solid var(--color-primary);;
    padding: 10px;
    transition: all 0.3s ease;
}

.focus-category a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 5px;
    font-size: 16px;
}

.focus-category:hover {
    background-color: var(--color-primary);;
}

.focus-category:hover a {
    color: #fff;
}

.focus-other {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.focus-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.focus-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.focus-image img {
    width: 100%;
    height: auto;
    display: block;
}

.focus-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.focus-insight-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.focus-insight-box:first-child {
    grid-column: 1;
}

.focus-insight-box:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.focus-insight-box:last-child {
    grid-column: 1;
}

.focus-insight-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.focus-insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    border-radius: 8px 8px 0 0;
}

.general-layout-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.scope-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.scope-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.scope-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--color-primary);;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.scope-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scope-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.scope-card-content {
    display: flex;
    align-items: stretch;
}

.scope-card-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 4px solid var(--color-secondary);
}

.scope-card-left h3 {
    color: var(--color-secondary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.scope-card-left p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

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

.general-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.general-layout-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-primary);;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.general-layout-content {
    max-width: 900px;
    margin: 0 auto;
}

.general-layout-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.layout-highlight {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border-left: 4px solid var(--color-primary);;
}

.highlight-icon {
    flex: 0 0 100px;
    margin-right: 20px;
}

.highlight-icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.highlight-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

@media (max-width: 768px) {
    .video-controls {
        min-width: 250px;
        padding: 8px 15px;
    }
    
    .time-display {
        min-width: 60px;
        font-size: 12px;
    }
    
    .layout-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .highlight-text p {
        text-align: center;
    }
    
    .scope-card-content {
        flex-direction: column;
    }
    
    .scope-card-right {
        max-width: 100%;
        order: 1;
        height: 200px;
    }
    
    .scope-card-left {
        order: 2;
        padding: 25px;
        border-left: none;
        border-right: none;
        border-top: 4px solid var(--color-secondary);
    }
    
    .scope-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .scope-card-left h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .scope-items {
        gap: 30px;
    }
    
    .focus-category-row {
        gap: 10px;
    }
    
    .focus-category a {
        font-size: 14px;
        padding: 3px;
    }
    
    .focus-insights {
        grid-template-columns: 1fr;
    }
    
    .focus-insight-box:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .focus-insight-box {
        padding: 15px;
    }
    
    .focus-insight-box p {
        font-size: 14px;
    }
    
    .profile-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .profile-left {
        margin-bottom: 30px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .info-label {
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .info-value {
        width: 100%;
        font-size: 14px;
    }
    
    .profile-education h3,
    .profile-career h3 {
        font-size: 16px;
    }
    
    .career-period {
        flex-direction: column;
    }
    
    .period-year {
        margin-bottom: 8px;
        margin-right: 0;
        width: fit-content;
    }
    
    .decoration-item {
        display: none;
    }
    
    .certificates-header h2 {
        font-size: 22px;
        padding: 8px 20px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .certificate-link img {
        height: 140px;
    }
    
    .certificate-title {
        padding: 10px;
        font-size: 12px;
    }
    
    .lightbox-content {
        max-width: 95%;
        padding: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    #lightboxCaption {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .member-image img {
        height: 180px;
    }
    
    .member-info {
        padding: 10px;
    }
    
    .member-name {
        font-size: 14px;
    }
    
    .member-title {
        font-size: 12px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .contact-info h2 {
        font-size: 20px;
        text-align: center;
    }
}

.contact-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.contact-item {
    flex: 1 1 auto;
    min-width: 200px;
}

@media (max-width: 576px) {
    .contact-details {
        flex-direction: column;
    }
    
    .contact-item {
        width: 100%;
    }
}

.dollar-icon-container {
    text-align: center;
    margin-bottom: 15px;
}

.dollar-icon {
    font-size: 60px;
    color: var(--color-primary);;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 20px rgba(230, 168, 32, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 168, 32, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(230, 168, 32, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 168, 32, 0);
        transform: scale(1);
    }
}


@media (max-width: 768px) {
  .profile-content {
    flex-direction: column;
  }
  
  .profile-left, .profile-right {
    width: 100%;
  }
  
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .info-label {
    flex: none;
    margin-bottom: 5px;
  }
  
  .info-value {
    width: 100%;
    text-align: center;
  }
  
  .profile-education, .profile-career {
    text-align: center;
  }
  
  .career-period {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .period-year {
    margin-bottom: 5px;
  }
}


.dollar-icon,  .scroll-down i {
    background: none !important;
}


.features-boxes-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-boxes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-box:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.feature-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.feature-link:hover {
    background-color: var(--color-secondary);
}


@media (max-width: 992px) {
    .features-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-boxes {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-content h3 {
        font-size: 16px;
    }
}