.srb-text {
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    width: 100%;
    background: #f9f9f9;
    box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
}

.srb-text img {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.srb-text h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    line-height: 2.25rem;
    margin-bottom: 15px;
}

.srb-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.srb-text ul {
    padding-left: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.srb-text ul li {
    font-size: 1rem;
    list-style: disc;
    color: #333;
    margin-bottom: 10px;
}

.srb-text ol {
    padding-left: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.srb-text ol li {
    font-size: 1rem;
    /* list-style: decimal; */
    color: #333;
    margin-bottom: 10px;
}

.srb-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 2rem;
    margin-bottom: 10px;
}

.srb-text h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.75rem;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .srb-text {
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .srb-text h2 {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .srb-text p,
    .srb-text ul li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .srb-text h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .srb-text h4 {
        font-size: 1.1rem;
        line-height: 1.5rem;

    }
}




/* video  */


/* ══ SECTION ══ */
.drs-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(160deg, #eef4fb 0%, #f5f9ff 50%, #e8f4f5 100%);
}

/* Blobs */
.drs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
}

.drs-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(33, 52, 84, 0.07);
    top: -160px;
    left: -120px;
    animation: drs-float 9s ease-in-out infinite;
}

.drs-orb-2 {
    width: 420px;
    height: 420px;
    background: rgba(1, 110, 117, 0.08);
    bottom: -130px;
    right: -90px;
    animation: drs-float 11s ease-in-out infinite reverse;
}

@keyframes drs-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }
}

/* Dot pattern */
.drs-dots-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(1, 110, 117, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
}

/* ══ TAB SIDEBAR BTN ══ */
.drs-tab-btn {
    display: flex;
    align-items: center;
    border: 1px solid rgba(33, 52, 84, 0.1);
    border-radius: 16px !important;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
    outline: none;
    position: relative;
    width: 100%;
    box-shadow: 0 2px 10px rgba(33, 52, 84, 0.06);
    padding: 12px;
}

.drs-tab-btn:hover {
    border-color: rgba(1, 110, 117, 0.35);
    box-shadow: 0 6px 22px rgba(1, 110, 117, 0.12);
}

.drs-tab-btn.drs-active {
    border-color: rgba(1, 110, 117, 0.5) !important;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(1, 110, 117, 0.15),
        0 8px 28px rgba(1, 110, 117, 0.18) !important;
}

/* Left accent bar */
.drs-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1d267f, #016e75);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drs-tab-btn.drs-active::before {
    opacity: 1;
}

/* Mini Thumbnail */
.drs-mini-thumb {
    position: relative;
    width: 130px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    background: #dce8f0;
}

.drs-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.3s ease;
}

.drs-tab-btn.drs-active .drs-mini-thumb img,
.drs-tab-btn:hover .drs-mini-thumb img {
    filter: brightness(1) saturate(1);
}

.drs-mini-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 52, 84, 0.3);
    transition: background 0.3s;
}

.drs-tab-btn.drs-active .drs-mini-overlay {
    background: rgba(33, 52, 84, 0.1);
}

.drs-mini-play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #016e75;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: #fff;
    padding-left: 2px;
    box-shadow: 0 3px 10px rgba(1, 110, 117, 0.5);
    transition: background 0.3s;
}

.drs-tab-btn.drs-active .drs-mini-play {
    background: linear-gradient(135deg, #1d267f, #016e75);
}

/* Tab Info */
.drs-tab-info {
    flex: 1;
    padding-left: 10px;
    overflow: hidden;
}

.drs-tab-num-badge {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #016e75;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s;
    margin-bottom: 3px;
}

.drs-tab-btn.drs-active .drs-tab-num-badge {
    color: #014f54;
}

.drs-tab-label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #5682a6;
    line-height: 1.3;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.drs-tab-btn.drs-active .drs-tab-label,
.drs-tab-btn:hover .drs-tab-label {
    color: #1d267f;
}

.drs-tab-dur {
    display: flex;
    font-size: 10px;
    font-weight: 500;
    color: #b0c8db;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.drs-tab-btn.drs-active .drs-tab-dur {
    color: #016e75;
}

.drs-tab-dur-dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══ MAIN PANEL ══ */
.drs-main-panel {
    background: #ffffff;
    border: 1px solid rgba(33, 52, 84, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(33, 52, 84, 0.1);
}

/* Panels */
.drs-panel {
    display: none;
    animation: drs-fadein 0.42s ease;
}

.drs-panel.drs-active {
    display: block;
}

@keyframes drs-fadein {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 16:9 Video */
.drs-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #dce8f0;
}

.drs-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
    .drs-tab-sidebar-wrap {
        display: flex !important;
        /* flex-direction: row !important; */
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .drs-tab-sidebar-wrap::-webkit-scrollbar {
        display: none;
    }

    .drs-tab-btn {
        /* flex-direction: column; */
        min-width: 110px;
        padding: 5px;
    }

    .drs-tab-btn::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 3px;
        border-radius: 0 0 3px 3px;
    }

    .drs-mini-thumb {
        /* width: 100%; */
        height: 70px;
    }

    .drs-tab-info {
        padding-left: 5px;
    }
}

@media (max-width: 480px) {
    .drs-section {
        padding: 40px 0;
    }
}



/* counter */

.pq-section-description {
    font-size: 16px;
    color: #333;
    line-height: 25px;
    margin-bottom: 10px;
}

.pq-section-list {
    padding-left: 25px;
    margin-bottom: 10px;
}

.pq-section-list li {
    font-size: 16px;
    list-style: disc;
    color: #333;
    margin-bottom: 10px;
    line-height: 25px;
}

.pq-counter-info .timer {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 10px 0;
}

.pq-counter-info .pq-counter-description {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.pq-section-title {
    font-size: 36px !important;
    font-weight: 600 !important;
    position: relative !important;
}

.pq-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--ins-brand-color);
}

.pq-section-title::after {
    content: "";
    position: absolute;
    left: 65px;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--ins-brand-default-color);
}

.pq-blog-img img {
    aspect-ratio: 2/1.3;
    object-fit: cover;
}

.pq-section-title span:nth-child(1) {
    color: var(--ins-brand-color);
}

.pq-section-title span:nth-child(2) {
    color: var(--ins-brand-default-color);
}

@media (max-width: 991px) {
    .pq-counter-info .timer {
        font-size: 30px;
    }

    .pq-counter-info .pq-counter-description {
        font-size: 14px;
    }

    .pq-section-title {
        font-size: 28px !important;
    }
}



/* faq */

.faq-section-v2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 2px solid #1d267f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px #1018671a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px #1d277f24;
}

.faq-question {
    cursor: pointer;
    padding: 15px 20px;
    background: #eff0ff;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e6e8ff;
    color: #1d267f;
}

.faq-icon {
    font-size: 20px;
    color: #1d267f;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: linear-gradient(135deg, #24319e, #101867);
    color: white;
}

.faq-question.active .faq-icon {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    background: rgba(241, 97, 34, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.show {
    max-height: 1000px;
    padding: 20px 28px;
}

.faq-answer p {
    margin: 0 0 15px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 0 0 15px;
}

.faq-answer ul li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
        padding: 8px 12px;
        font-weight: 500;
    }

}



/* sidebar  */

.sdb-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(1, 110, 117, 0.18);
    background: #ffffff;
}


.sdb-hero {
    background: linear-gradient(145deg, #1d267f 0%, #2a3d9e 45%, #016e75 100%);
    padding: 30px 15px 30px;
    text-align: center;
    position: relative;
}

.sdb-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 15px;
    background: #ffffff;
    border-radius: 15px 15px 0 0;
}

.sdb-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.45);
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 2.3rem;
    color: #ffffff;
}

.sdb-hero-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.sdb-hero-sub {
    color: rgba(255, 255, 255, 1);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 25px;
}

.sdb-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.sdb-sec-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1d267f;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.sdb-sec-title i {
    color: #016e75;
}

.sdb-sec-title::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, #e8eaf6, #e0f4f5);
    border-radius: 2px;
}

.sdb-svc-item {
    background: #e8eaf6;
    border: 1.5px solid #c5caf0;
    border-radius: 10px;
    padding: 12px 10px;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 25px;
    color: #1d267f;
    transition: all 0.22s ease;
    height: 100%;
}

.sdb-svc-item:hover {
    background: linear-gradient(135deg, #1d267f, #016e75);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(1, 110, 117, 0.28);
}

.sdb-ci-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f9;
}

.sdb-ci-item:last-child {
    border-bottom: none;
}

.sdb-ci-icon {
    width: 45px;
    height: 45px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sdb-ci-icon--phone {
    background: #e8eaf6;
    color: #1d267f;
}

.sdb-ci-icon--email {
    background: #e0f4f5;
    color: #016e75;
}

.sdb-ci-icon--addr {
    background: linear-gradient(135deg, #e8eaf6, #e0f4f5);
    color: #1d267f;
}

.sdb-ci-label {
    font-size: 0.67rem;
    color: #c7d4e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sdb-ci-value {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    word-break: break-word;
}

.sdb-input {
    border: 1.5px solid #d0d5ee;
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    color: #1a2a4a;
    background: #f8f9fe;
    width: 100%;
    height: auto;
    line-height: unset;
    margin: 0;
    float: none;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sdb-input::placeholder {
    color: #b0bdd8;
}

.sdb-input:focus {
    border-color: #016e75;
    box-shadow: 0 0 0 3.5px rgba(1, 110, 117, 0.13);
    background: #ffffff;
}

.sdb-textarea {
    height: 82px;
    line-height: 25px;
    resize: vertical;
    display: block;
}

.sdb-btn-send {
    background: linear-gradient(135deg, #1d267f 0%, #016e75 100%) !important;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 8px 13px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    width: 100%;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.sdb-btn-send:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(1, 110, 117, 0.35);
}

/* gallery */

.pq-gallery-box img {
    aspect-ratio: 5/4;
    object-fit: cover;
    border: 2px solid #016e75;
    border-radius: 20px;
}




/* faq */

.faq-section-v2 {
    max-width: 1000px;
    margin: 40px auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 2px solid #1d267f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(33, 52, 84, 0.15);
}

.faq-question {
    cursor: pointer;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(1, 110, 117, 0.03));
    position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #1d267f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #016d7517;
    color: #016e75;
}

.faq-icon {
    font-size: 20px;
    color: #016e75;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: linear-gradient(135deg, #1d267f, #016e75);
    color: white;
}

.faq-question.active .faq-icon {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    background: rgba(241, 97, 34, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.show {
    max-height: 1000px;
    padding: 20px 28px;
}

.faq-answer p {
    margin: 0 0 15px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 0 0 15px;
}

.faq-answer ul li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
        padding: 8px 12px;
        font-weight: 500;
    }

}


/* contact us  */

.ct-contact-enquiry-section {
    background: #fff;
}

.ct-contact-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px #016e7559;
    padding: 30px;
    height: 100%;
}

.ct-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #373634;
    position: relative;
    padding-bottom: 8px;
}

.ct-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #016e75, var(--primary-color));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.ct-contact-item {
    background: #016e7515;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0ede8;
}

.ct-contact-item:hover {
    transform: translateX(5px);
    border-color: #016e75;
}

.ct-contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #016e75, var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 4px 15px #016e7559;
}

.ct-contact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.ct-contact-label {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.ct-contact-text {
    font-size: 16px;
    color: #016e75;
    font-weight: 500;
    line-height: 18px;

    a {
        color: #016e75;
        text-decoration: none;
        transition: color 0.3s ease;
    }
}

.ct-enquiry-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px #016e7559;
}

.ct-form-control {
    padding: 15px 20px;
    border: 2px solid #e8e6e3;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #016e7515;
}

.ct-form-control:focus {
    outline: none;
    border-color: #016e75;
    background: #ffffff;
    box-shadow: 0 0 0 4px #016e7559;
}

.ct-form-control::placeholder {
    color: #a09d9a;
}

.ct-textarea {
    min-height: 120px;
    resize: vertical;
}

.ct-submit-btn {
    background: linear-gradient(135deg, #016e75, var(--primary-color));
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px #016e7559;
}

.ct-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px #016e7559;
    background: linear-gradient(135deg, #016e75, var(--primary-color));
}

.ct-submit-btn:active {
    transform: translateY(-1px);
}

.ct-social-icon-link {
    width: 50px;
    height: 50px;
    background: #016e752c;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #016e75;
    text-decoration: none;
    box-shadow: inset 3px 3px 5px #0000002b, inset -3px -3px 5px #ffffff79;
}

.ct-social-icon-link:hover {
    background: linear-gradient(135deg, #016e75, var(--primary-color));
    color: #ffffff;
    transform: translateY(-5px);
}

.ct-social-icon-link i {
    font-size: 20px;
}

@media (max-width: 768px) {

    .ct-contact-card,
    .ct-enquiry-form {
        padding: 20px 12px;
    }

    .ct-section-title {
        font-size: 26px;
    }

    .ct-contact-icon {
        width: 45px;
        height: 45px;
    }

    .ct-contact-icon i {
        font-size: 20px;
    }

    .ct-submit-btn {
        padding: 14px 40px;
        width: 100%;
    }
}