@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

/* ============================ */


/* Base Settings */


/* ============================ */

* {
    font-family: "Merriweather", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

h1 {
    font-size: 50px !important;
    font-weight: 900;
    text-transform: uppercase;
}

p {
    font-size: 19px;
}


/* ============================ */


/* Brand Logo */


/* ============================ */

.brand-logo {
    max-width: 200px;
}


/* ============================ */


/* Team Post Hover */


/* ============================ */

.team-post {
    cursor: pointer;
}

.team-post:hover .team-detail {
    transform: translateY(0%);
}

.team-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 70%;
    background: #161616da;
    transform: translateY(100%);
    transition: transform ease-in-out 500ms;
}


/* ============================ */


/* Background Colors and Text */


/* ============================ */

.dark-bg,
.dark-bg a {
    color: rgb(0, 0, 0);
}

.light-bg h1,
.light-bg h2,
.light-bg h3,
.light-bg h4,
.light-bg h5,
.light-bg h6 {
    color: #0d1317;
}

.light-bg p,
.light-bg li {
    color: #5b5b5b;
}

.light-bg span {
    color: rgba(57, 65, 73, 0.5);
}

.light-bg {
    color: #394149;
}

.light-bg a {
    color: #f58a07;
}


/* ============================ */


/* Buttons and Links */


/* ============================ */

button.bg-brand-primay:hover,
a.bg-brand-primay:hover {
    background: #f89d2d !important;
}

a.bg-brand-primayfaint:hover {
    color: white !important;
    background-color: #f58a07 !important;
}

a.cl-blue-900:hover {
    color: #325771 !important;
}


/* ============================ */


/* Background Classes */


/* ============================ */

.bg-brand-primay {
    background: #eeab59 !important;
    color: white !important;
}

.bg-brand-primayfaint {
    color: #ffffff !important;
    background: rgba(245, 138, 7, 0.1) !important;
}

.bg-bluefaint {
    background-color: #edf7ff !important;
}

.bg-blue-200 {
    background: rgba(210, 218, 237, 0.17) !important;
}

.bg-bluelight {
    background-color: #dceaf5;
}

.bg-blueDark {
    background: #063255;
}


/* ============================ */


/* Font Weights */


/* ============================ */

.fw-smbold {
    font-weight: 600 !important;
}


/* ============================ */


/* Border Radius */


/* ============================ */

.b-6 {
    border-radius: 16px !important;
}


/* ============================ */


/* Colors */


/* ============================ */

.cl-white {
    color: white !important;
}

.cl-blue-900 {
    color: #1d3444 !important;
}

.cl-primary {
    color: #f58a07 !important;
}

.cl-blue-700 {
    color: #063255;
}


/* ============================ */


/* Icon Styles */


/* ============================ */

.icon {
    color: #f58a07;
    font-size: 2rem;
}


/* ============================ */


/* Image Styling */


/* ============================ */

.img-bar {
    position: absolute;
    left: 2px;
    top: 0;
    bottom: 0;
    background: #f58a07;
    mix-blend-mode: multiply;
    width: 20%;
    z-index: 2;
    border-radius: 16px 0px 0px 16px;
}

.img-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================ */


/* Overlay Image Positions */


/* ============================ */

.p-tr {
    right: -3.6%;
    top: -5.6%;
}

.p-ru {
    right: -3.6%;
    top: 10%;
}

.p-rc {
    right: -6.5%;
    top: 50%;
}

.p-br {
    right: -0.8%;
    bottom: -4.6%;
}

.p-lu {
    left: -6.5%;
    top: 10%;
}

.p-lc {
    left: -6.5%;
    top: 50%;
}

.p-ld {
    left: -6.5%;
    bottom: 10%;
}

.overlay-img--circle {
    width: 5rem;
}

.overlay-img--ribbon {
    position: absolute;
    width: 5rem;
    right: -1.6%;
    top: -2.6%;
    z-index: 10;
}

.overlay-img--cubeLg {
    width: 23%;
    height: 23%;
    background: #f58a07;
    mix-blend-mode: multiply;
    right: -0.1%;
    bottom: -0.6%;
}

.overlay-img--cubeSm {
    width: 15%;
    height: 15%;
    background: #f58a07;
    mix-blend-mode: multiply;
}


/* ============================ */


/* Small Font */


/* ============================ */

.fs-7 {
    font-size: 14px !important;
}


/* ============================ */


/* Buttons */


/* ============================ */

button.bg-white {
    background-color: white;
    color: #f58a07;
}


/* ============================ */


/* Person Info */


/* ============================ */

.person-info span {
    font-size: 14px;
}


/* ============================ */


/* Form Label */


/* ============================ */

form label {
    color: #9c9c9c;
}


/* ============================ */


/* Service Cards */


/* ============================ */

.service-card {
    position: relative;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}


/* ============================ */


/* Service List Items */


/* ============================ */

.service-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-item {
    display: inline-block;
    padding: 10px 20px;
    margin: 4px 0;
    border: 1px solid #f58a07;
    border-radius: 50px;
    color: #f58a07;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    font-size: 16px;
}

.service-item:hover {
    background-color: #f58a07;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(245, 138, 7, 0.25);
}


/* ============================ */


/* Testimonials */


/* ============================ */

.review-card {
    animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================ */


/* Animated Dynamic Word */


/* ============================ */

#dynamic-word {
    font-size: 50px;
    display: inline-block;
    font-weight: bold;
}

#dynamic-word span {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    font-weight: bold;
    color: black;
}

#dynamic-word span:nth-child(1) {
    animation-delay: 0s;
}

#dynamic-word span:nth-child(2) {
    animation-delay: 0.5s;
}

#dynamic-word span:nth-child(3) {
    animation-delay: 1s;
}

#dynamic-word span:nth-child(4) {
    animation-delay: 1.5s;
}

#dynamic-word span:nth-child(5) {
    animation-delay: 2s;
}


/* ============================ */


/* --- PR Service Card Enhancements --- */


/* New Service Card */


/* Service Card with Sticker Effect */

.service-card-new {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    min-height: 320px;
    position: relative;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 1rem;
}

.service-card-new .card-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    opacity: 0.15;
    border-radius: 1rem;
    z-index: 1;
}

.service-card-new .content {
    position: relative;
    z-index: 2;
}

.service-card-new h3 {
    font-size: 1.5rem;
    color: #063255;
}

.service-card-new p {
    font-size: 1rem;
    color: #5b5b5b;
    margin-bottom: 0;
}

.gradient-text {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-subheading {
    background: linear-gradient(90deg, #6f42c1, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-card {
    border: 1px solid #eee;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}