:root {
    --text-color: #9C9C9C;
    --dark-color: #080808;
    --title-font-family: "Raleway", sans-serif;
}
* {
    font-family: "IBM Plex Mono", monospace;;
}

.content-container {
    width:75%;
    margin:auto;
}
@media (max-width: 992px) {
    .content-container {
        width: 100%;
    }
}
.dark-section {
    background-color: var(--dark-color);
    color: #fff;
}
.basic-btn {
    background-color: #3F8E00;
    color: #fff;
    border: 1px solid #62BA1B;
    padding: 10px 24px;
}
.basic-btn:hover {
    background-color: #2F6F00;
    color: #fff;
}
.basic-btn:hover i ,
.btn:hover i {
    margin-left: 3px;
}
.text-style {
    font-size: 14px;
    color: var(--text-color);
}
.main-title {
    font-family: var(--title-font-family);
    font-weight: 800;
}
.section-title {
    font-family: var(--title-font-family);
    font-weight: 800;
    text-align: center;
}
.section-subtitle {
    color: var(--text-color);
    text-align: center;
    margin: 5px auto;
}

/* Header */
header {
    min-height: 100vh;
}

/*  Navbar */
nav {
    z-index: 999;
}
nav .container , footer {
    background-color: #1B1B1B;
    font-size: 14px;
}
.social-icon i {
    font-size: 22px;
}

/* Hero Section */
.hero {
    font-family: var(--title-font-family);
    flex: 1;
}
.hero .info h1 {
    font-size: 44px;
}
.info .btn {
    padding: 20px 65px;
}
@media (max-width: 767px) {
    .hero img {
        width: 75%;
        margin-top: 30px;
    }
}

/* Worked With Section */
.worked-with {
    margin-top: auto;
}
.worked-with .logo {
    width: 160px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1B1B1B;
    border-radius: 6px;
}
.worked-with .logo:hover {
    border-color: var(--text-color);
    cursor: pointer;
}

/* Case Studies Section */
.case-studies-list .case-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 1px 10px;
    width: fit-content;
}
.case-tag.orange {
    background-color: #FFF6E9;
    color: #FFA217;
}
.case-tag.blue {
    background-color: #D0E6FF;
    color: #000AFF;
}
.case-tag.green {
    background-color: #E0FFF8;
    color: #2AB090;
}
.case-studies-list .btn {
    padding: 10px 25px;
}
.case-studies-list .btn.orange {
    background-color: #FFA217;
    color: #fff;
}
.case-studies-list .btn.blue {
    background-color: #000AFF;
    color: #fff;
}
.case-studies-list .btn.green {
    background-color: #2AB090;
    color: #fff;
}
.case-studies-list img {
    height: 300px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    padding: 1px; 
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05))
}
.testimonial-card-inner {
    background: var(--dark-color);
    border-radius: 12px;
}
.testimonial-card .quote {
    font-size: 25px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
}
.testimonial-info img {
    width: 50px;
    height: 50px;
}
.testimonial-info p {
    font-family: var(--title-font-family);
    color: var(--text-color);
    font-size: 18px;
}

/* Recent work Section */
.recent-work-content {
    position: relative;
}
.carousel-control-prev ,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-control-prev span ,
.carousel-control-next span {
    filter: invert(.5);
}
.carousel-control-prev {
    left: -10%;
}
.carousel-control-next {
    right: -10%;
}
@media (max-width: 767px) {
    .carousel-control-prev ,
    .carousel-control-next {
        display: none;
    }
}

/* Get In Touch Section */
form {
    font-size: 12px;
    font-weight: 600;
}
.form-container {
    width:50%;
    margin:auto;
}
@media (max-width:768px) {
    .form-container {
        width:100%;
    }
}
form textarea {
    height: 120px;
}
form input::placeholder ,
form textarea::placeholder {
    font-size: 12px;
    color: #757575;
}

/* Footer */
footer {
    height: 70px;
}
