﻿@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Canela';
    src: url('../font/Canela-Regular-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    /*  Font Family  */
    --font-family-primary: 'Canela', serif;
    --font-family-secondary: 'Urbanist', sans-serif;
    /* Color */
    --color-primary: #386840;
    --color-secondary: #1E1E1E;
    --color-black: #000;
    --color-white: #fff;
    --color-highlight: #FFBB33;
    --light-gray: #F1F1F1;
    /* Font-size */
    --font-40: 40px;
    --font-38: 34px;
    --font-32: 32px;
    --font-30: 30px;
    --font-28: 28px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;
    /*Line Height*/
    --leading-28: 28px;
    /* Spacing */
    --space120: 120px;
    --space100: 100px;
    --space30: 30px;
}
/*  BreakPoints  */
@media (max-width: 1920px) {
    :root {
        /* Font-size */
        --font-40: 38px;
        --font-38: 34px;
        --font-32: 30px;
        --font-30: 28px;
        --font-28: 26px;
        --font-24: 24px;
        --font-22: 22px;
        --font-20: 20px;
        --font-18: 16px;
        /* Spacing */
        --space120: 100px;
        --space100: 100px;
        --space30: 30px;
    }
}

@media (max-width: 1400px) {
    :root {
        /* Font-size */
        --font-40: 36px;
        --font-38: 34px;
        --font-32: 30px;
        --font-30: 28px;
        --font-28: 26px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 20px;
        --font-18: 16px;
        /* Spacing */
        --space120: 80px;
        --space100: 80px;
        --space30: 30px;
    }
}

@media (max-width: 1200px) {
    :root {
        /* Font-size */
        --font-40: 34px;
        --font-38: 32px;
        --font-32: 30px;
        --font-30: 28px;
        --font-28: 26px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 20px;
        --font-18: 16px;
        /* Spacing */
        --space120: 70px;
        --space100: 70px;
        --space30: 25px;
    }
}

@media (max-width: 992px) {
    :root {
        /* Font-size */
        --font-40: 32px;
        --font-38: 30px;
        --font-32: 28px;
        --font-30: 26px;
        --font-28: 24px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 20px;
        --font-18: 16px;
        /* Spacing */
        --space120: 60px;
        --space100: 60px;
        --space30: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        /* Font-size */
        --font-40: 30px;
        --font-38: 23px;
        --font-32: 26px;
        --font-30: 24px;
        --font-28: 22px;
        --font-24: 20px;
        --font-22: 18px;
        --font-20: 18px;
        --font-18: 16px;
        /* Spacing */
        --space30: 20px;
    }
}

@media (max-width: 576px) {
    :root {
    }
}
/*Command CSS*/
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-secondary);
    color: var(--color-secondary);
}

p, h1, h2, h3, h4, h5, h6, a {
   /* padding: 0;*/
    line-height: normal;
}

h1, .h1 {
    font-family: var(--font-family-primary);
    font-size: var(--font-40);
    line-height: normal;
}

h2, .h2 {
    font-family: var(--font-family-primary);
    font-size: var(--font-40);
    line-height: normal;
}

h3, .h3 {
    font-family: var(--font-family-primary);
    font-size: var(--font-30);
    line-height: normal;
}

h4, .h4 {
    font-family: var(--font-family-primary);
    font-size: var(--font-28);
    line-height: normal;
}

h5, .h5 {
    font-family: var(--font-family-primary);
    font-size: var(--font-22);
    line-height: normal;
}

h6, .h6 {
    font-family: var(--font-family-primary);
    font-size: var(--font-20);
    line-height: normal;
}

p, .fs-normal {
    font-family: var(--font-family-secondary);
    font-size: var(--font-16);
    line-height: var(--leading-28);
    font-weight: normal;
}
/* ----- */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: var(--font-16);
    color: var(--color-secondary);
    line-height: var(--leading-28);
    font-family: var(--font-family-secondary);
}

a {
    text-decoration: none;
    font-size: var(--font-16);
    line-height: var(--leading-28);
    transition: all 0.7s;
    font-family: var(--font-family-secondary);
}

    a.text-white:hover, a:hover {
        text-decoration: none !important;
        color: var(--color-primary);
    }


@media(max-width: 768px) {

    h1 {
        font-size: var(--font-32);
    }

    h2 {
        font-size: var(--font-32);
    }
}

.font-futuru {
    font-family: var(--font-family-secondary) !important;
}

.font-canela {
    font-family: var(--font-family-primary) !important;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

audio, canvas, img, video {
    box-sizing: border-box;
}

img {
    border-style: none;
}
/*Command Class*/
.ul-styling li::before {
    content: "\F309";
    font-family: "bootstrap-icons" !important;
    margin-right: 0px;
    position: relative;
    top: 3px;
    color: var(--color-white);
}

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a.link {
    font-size: var(--font-18);
    line-height: var(--leading-28);
    transition: all 0.7s;
}

    a.link:hover {
        color: var(--color-primary);
    }

.border-radius-theme {
    border-radius: 30px 30px 30px 0;
}

.border-radius-theme-1 {
    border-radius: 30px 30px 0px 30px;
}

.border-radius-tabs {
    border-radius: 20px 30px 30px 0px;
}

.bg-primary {
    background: var(--color-primary)
}

/* Spacing */
.mt-120 {
    margin-top: var(--space120);
}

.mb-120 {
    margin-bottom: var(--space120);
}

.my-120 {
    margin-top: var(--space120);
    margin-bottom: var(--space120);
}

.mt-100 {
    margin-top: var(--space100);
}

.mb-100 {
    margin-bottom: var(--space100);
}

.mb-30 {
    margin-bottom: var(--space30);
}

.ptb-10 {
    padding-top: var(--space120);
    padding-bottom: var(--space120);
}

/* Text color class*/
.text-highlight {
    color: var(--color-highlight) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}
/* Background color class*/
.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-highlight {
    background-color: var(--color-highlight) !important;
}
/* Button*/
.btn {
    font-family: var(--font-family-primary);
    font-size: var(--font-18);
    color: var(--color-secondary);
    display: inline-block;
    line-height: var(--leading-26);
    font-weight: 600;
    padding: 11px 25px;
    border-radius: 25px 30px 30px 0%;
    transition: all 0.9s ease;
}

    .btn.table-btn {
        padding: 10px 15px;
    }

    .btn.btn-primary {
        background-color: var(--color-primary);
        color: var(--color-white);
        border: 1px solid var(--color-primary);
        cursor: pointer !important;
    }

        .btn.btn-primary:hover {
            background-color: var(--color-white);
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
        }

    .btn.btn-secondary {
        background-color: var(--color-secondary);
        color: var(--color-white);
        border: 1px solid var(--color-white);
    }

        .btn.btn-secondary:hover {
            background-color: var(--color-white);
            color: var(--color-secondary);
            border: 1px solid var(--color-white);
        }

    .btn.btn-white {
        background-color: var(--color-white);
        color: var(--color-secondary);
        border: 1px solid var(--color-white);
    }

        .btn.btn-white:hover {
            background-color: var(--color-secondary);
            color: var(--color-white);
            border: 1px solid var(--color-white);
        }

    .btn.btn-highlight {
        background-color: var(--color-highlight);
        color: var(--color-secondary);
        border: 1px solid var(--color-highlight);
    }

        .btn.btn-highlight:hover {
            background-color: var(--color-secondary);
            color: var(--color-highlight);
            border: 1px solid var(--color-secondary);
        }
/* Footer */
#footer {
    background: url("../images/footer-bg.webp") center / cover no-repeat, url("../images/footer-bg.png") center / cover no-repeat;
}

/* Base Container */
.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media(min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media(min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}


#dps-international-ghana-inner-banner {
    background: url('../images/dps-theme-banner-img.png'),url('../images/dps-theme-banner-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-heading {
    padding-top: 65px;
    padding-bottom: 65px;
}

.text-green {
    color: var(--color-primary);
}

.text-darks {
    color: var(--color-secondary);
}

.card_info {
    border: 1px solid #38684047 !important;
}

    .card_info p a:hover {
        color: var(--color-primary);
    }

.bg-green {
    background: #386840;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#enquiry-now .border {
    border: 1px solid #38684057;
    border-bottom-left-radius: 0px;
    line-height: 30px;
}

.captcha {
    background: #F5F5F5;
}

.dps-map {
    width: 100%;
    height: 630px;
    border-radius: 40px;
}

#enquiry-now input, #enquiry-now textarea {
    border-bottom-left-radius: 0px;
}

.space-form {
    padding: 45px 45px 60px 45px;
}

@media(max-width:768px) {
    .space-form {
        padding: 25px 10px 45px 10px;
    }

    .btn {
        padding: 12px 28px;
    }
}

@media(max-width:992px) {
    .dps-map {
        height: 350px;
    }
}

#dps-international-ghana-inner-banner p a:hover {
    color: var(--color-highlight);
}

/*manan*/

#dps-international-ghana-inner-banner {
    background: url('../images/dps-banner-img.png'), url('../images/dps-banner-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-heading {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-green {
    color: var(--color-primary);
}

.text-darks {
    color: var(--color-secondary);
}

.card_info {
    border: 1px solid #38684047 !important;
}

    .card_info p a:hover {
        color: var(--color-primary);
    }

.bg-green {
    background: #386840;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#enquiry-now .border {
    border: 1px solid #38684057;
    border-bottom-left-radius: 0px;
}

.captcha {
    background: #F5F5F5;
}

.dps-map {
    width: 100%;
    height: 630px;
    border-radius: 40px;
}

#enquiry-now input, #enquiry-now textarea {
    border-bottom-left-radius: 0px;
}

.space-form {
    padding: 45px 45px 60px 45px;
}

@media(max-width: 768px) {
    .space-form {
        padding: 25px 10px 45px 10px;
    }

    .btn {
        padding: 12px 28px;
    }
}

@media(max-width: 992px) {
    .dps-map {
        height: 350px;
    }
}

#dps-international-ghana-inner-banner p a:hover {
    color: var(--color-highlight);
}

#dps-international-ghana-inner-banner {
    background: url('../images/dps-banner-img.png'),url('../images/dps-banner-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-heading {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-green {
    color: var(--color-primary);
}

.text-darks {
    color: var(--color-secondary);
}

.card_info {
    border: 1px solid #38684047 !important;
}

    .card_info p a:hover {
        color: var(--color-primary);
    }

.bg-green {
    background: #386840;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#enquiry-now .border {
    border: 1px solid #38684057;
    border-bottom-left-radius: 0px;
    line-height: 30px;
}

.captcha {
    background: #F5F5F5;
}

.dps-map {
    width: 100%;
    height: 630px;
    border-radius: 40px;
}

#enquiry-now input, #enquiry-now textarea {
    border-bottom-left-radius: 0px;
}

.space-form {
    padding: 45px 45px 60px 45px;
}

@media(max-width:768px) {
    .space-form {
        padding: 25px 10px 45px 10px;
    }

    .btn {
        padding: 12px 28px;
    }
}

@media(max-width:992px) {
    .dps-map {
        height: 350px;
    }
}

#dps-international-ghana-inner-banner p a:hover {
    color: var(--color-highlight);
}

/*Achievements*/
.achievement-card img, .news-card img {
    height: 230px;
    object-position: center 25%;
    width: 100%
}

@media(max-width:992px) {
    .achievement-card img, .news-card img {
        height: 230px;
    }
}

@media(max-width:768px) {
    .achievement-card img, .news-card img {
        height: 250px;
    }
}

/*manan*/

#dps-international-ghana-inner-banner {
    background: url('../images/dps-banner-img.png'), url('../images/dps-banner-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-heading {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-green {
    color: var(--color-primary);
}

.text-darks {
    color: var(--color-secondary);
}

.card_info {
    border: 1px solid #38684047 !important;
}

    .card_info p a:hover {
        color: var(--color-primary);
    }

.bg-green {
    background: #386840;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#enquiry-now .border {
    border: 1px solid #38684057;
    border-bottom-left-radius: 0px;
}

.captcha {
    background: #F5F5F5;
}

.dps-map {
    width: 100%;
    height: 630px;
    border-radius: 40px;
}

#enquiry-now input, #enquiry-now textarea {
    border-bottom-left-radius: 0px;
}

.space-form {
    padding: 45px 45px 60px 45px;
}

@media(max-width: 768px) {
    .space-form {
        padding: 25px 10px 45px 10px;
    }

    .btn {
        padding: 12px 28px;
    }
}

@media(max-width: 992px) {
    .dps-map {
        height: 350px;
    }
}

#dps-international-ghana-inner-banner p a:hover {
    color: var(--color-highlight);
}


#dps-international-ghana-inner-banner {
    background: url('../images/dps-banner-img.png'),url('../images/dps-banner-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-heading {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-green {
    color: var(--color-primary);
}

.text-darks {
    color: var(--color-secondary);
}

.card_info {
    border: 1px solid #38684047 !important;
}

    .card_info p a:hover {
        color: var(--color-primary);
    }

.bg-green {
    background: #386840;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#enquiry-now .border {
    border: 1px solid #38684057;
    border-bottom-left-radius: 0px;
    line-height: 30px;
}

.captcha {
    background: #F5F5F5;
}

.dps-map {
    width: 100%;
    height: 630px;
    border-radius: 40px;
}

#enquiry-now input, #enquiry-now textarea {
    border-bottom-left-radius: 0px;
}

.space-form {
    padding: 45px 45px 60px 45px;
}

@media(max-width:768px) {
    .space-form {
        padding: 25px 10px 45px 10px;
    }

    .btn {
        padding: 12px 28px;
    }
}

@media(max-width:992px) {
    .dps-map {
        height: 350px;
    }
}

#dps-international-ghana-inner-banner p a:hover {
    color: var(--color-highlight);
}


.img-size {
    width: 550px;
    margin: auto;
}

#endeavouring-excellence-steadfast {
    background: url('../images/steadfast-and-with-strong-conviction-img.png'), url('../images/steadfast-and-with-strong-conviction-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}

#endeavouring-excellence-steadfast .btn.btn-highlight:hover {
    border: 1px solid var(--color-highlight) !important;
}

.text-light {
    font-weight: 500 !important;
}

.values-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
    margin-bottom: 12px;
}

    .values-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 16px;
        height: 16px;
        background: url("../images/arrow-icon-img.svg") no-repeat center;
        background-size: contain;
    }

.values-lists {
    list-style-type: disc;
    padding-left: 20px; /* required to show bullets properly */
}


@media(max-width: 992px) {
}


.custom-border {
    border-start-start-radius: 20px;
    border-start-end-radius: 30px;
    border-end-end-radius: 30px;
    background: var(--color-white);
}

    .custom-border button {
        cursor: pointer;
    }

.bg-greens {
    background: var(--color-primary);
    border-start-start-radius: 50px !important;
}

.customs-border-curve {
    border-start-start-radius: 50px;
    border-end-end-radius: 50px;
}

.font-bd {
    font-weight: 500 !important;
}


#circulars button {
    cursor: pointer !important;
}

#dps-infrastructure {
    background: url('../images/explore-dps-infrastructure-img.png'), url('../images/explore-dps-infrastructure-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#enroll-the-best-school {
    background: url('../images/enroll-the-best-school-bg-img.png'), url('../images/enroll-the-best-school-bg-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-input {
    position: relative;
}

    /* Input & Select */
    .floating-input input,
    .floating-input select {
        width: 100%;
        height: 56px;
        padding: 22px 16px 10px;
        border-radius: 10px;
        background: #ffffff;
        border: 2px solid transparent;
        outline: none;
        font-size: 17px;
        color: #1e1e1e;
    }

        /* Focus border */
        .floating-input input:focus,
        .floating-input select:focus {
            border-color: #fbbf24;
        }

    /* Label */
    .floating-input label {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 17px;
        color: #1e1e1e;
        pointer-events: none;
        transition: 0.2s ease;
    }

    /* FLOATING STATE (works for select properly) */
    .floating-input input:focus + label,
    .floating-input input:not(:placeholder-shown) + label,
    .floating-input select:focus + label,
    .floating-input select:valid + label {
        top: 10px;
        font-size: 14px;
        color: #828282;
    }

    /* Custom dropdown arrow */
    .floating-input select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23000' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
    }

        /* Fix Safari & Chrome height issue */
        .floating-input select option {
            color: #000;
        }

/* Add select icon at end of input */
.select-icon::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23828282' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
}

#gallery button, .infra-menu button {
    cursor: pointer;
}

.link-hovers a:hover {
    color: #fff;
}

.accordion-content {
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

details:not([open]) .accordion-content {
    max-height: 0;
    opacity: 0;
}

details[open] .accordion-content {
    max-height: 500px;
    opacity: 1;
}

.rounded-custom {
    border-start-start-radius: 15px;
    border-start-end-radius: 15px;
    border-end-end-radius: 15px;
}

/* Default (CLOSED state) */
.accordion-item h6 {
    color: #1E1E1E;
    font-weight: 500 !important;
    transition: color 0.25s ease;
}

/* OPEN state */
.accordion-item[open] h6 {
    color: #386840;
}


.accordion-item {
    background: #fff !important;
}

    /* Accordion header base */
    .accordion-item summary {
        position: relative;
    }

        /* Divider line (hidden by default) */
        .accordion-item summary::after {
            content: "";
            position: absolute;
            left: -20px;
            bottom: 0;
            width: 604px;
            height: 1px;
            background-color: #386840;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: opacity 0.25s ease, transform 0.35s ease;
        }

    /* ONLY when accordion is open */
    .accordion-item[open] summary {
        padding-bottom: 12px;
    }

        .accordion-item[open] summary::after {
            opacity: 1;
            transform: scaleX(1);
        }


@media(max-width: 1400px) {
    .accordion-item summary::after {
        width: 514px !important;
    }
}

@media(max-width: 1200px) {
    .accordion-item summary::after {
        width: 423px !important;
    }
}


@media(max-width: 992px) {
    .accordion-item summary::after {
        width: 106% !important;
    }
}


@media(max-width: 768px) {
    .accordion-item summary::after {
        width: 108% !important;
    }
}

@media(max-width: 768px) {
    .accordion-item summary::after {
        width: 111% !important;
    }
}

.border-green {
    border: 1px solid #386840 !important;
    opacity: unset !important;
}

.borderr-custom {
    border-start-start-radius: 30px;
    border-end-end-radius: 30px;
    border-start-end-radius: 30px;
}

#dps-key-features {
    background: url('../images/dps-features-bg-img.png'), url('../images/dps-features-bg-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dps-key-feature {
    position: relative;
}

.features-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 730px;
    height: 100%;
    object-fit: cover;
}

.content-w {
    width: 75%;
}

@media(max-width: 1500px) {
    .features-img img {
        width: 665px;
    }
}

@media(max-width: 1300px) {
    .features-img img {
        width: 565px;
    }
}

@media(max-width: 1270px) {
    .content-w {
        width: unset;
    }
}

.xl\:space-x-13 {
    @media (width >= 80rem) {
        :where(& > :not(:last-child)) {
            --tw-space-x-reverse: 0;
            margin-inline-start: calc(calc(var(--spacing) * 13) * var(--tw-space-x-reverse));
            margin-inline-end: 35px !important;
        }
    }
}


@media(max-width: 1200px) and (min-width: 992px) {
    .nav-space .group a {
        font-size: 13px;
    }
}

.text-customs {
    font-size: 26px;
}

#sitemap-content .text-customs {
    font-weight: 600;
}

.txt-small h6 a {
    font-size: 20px !important;
}

#banner-img {
    transition: opacity 1.5s ease-in-out;
}

@media(max-width: 992px) {
    #home-banner #banner-img {
        height: 400px !important;
    }
}

@media(max-width: 768px) {
    #home-banner #banner-img {
        height: 300px !important;
    }
}

/* Home page animation */

/* Explore Our Infrastructure Section */
#explore-infrastructure .infra-card {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
}

#explore-infrastructure .from-left {
    transform: translate(-70px, 20px);
}

#explore-infrastructure .from-right {
    transform: translate(70px, 20px);
}

#explore-infrastructure.animate .infra-card {
    opacity: 1;
    transform: translate(0, 0);
}

    #explore-infrastructure.animate .infra-card:nth-child(1) {
        transition-delay: 0.15s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(2) {
        transition-delay: 0.3s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(3) {
        transition-delay: 0.45s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(4) {
        transition-delay: 0.6s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(5) {
        transition-delay: 0.15s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(6) {
        transition-delay: 0.3s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(7) {
        transition-delay: 0.45s;
    }

    #explore-infrastructure.animate .infra-card:nth-child(8) {
        transition-delay: 0.6s;
    }

.infra-caption {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

    .infra-caption::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, #000000 100% );
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .infra-caption p {
        transition: bottom 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

.group:hover .infra-caption::before {
    opacity: 0.75;
}

.group:hover .infra-caption p {
    bottom: 40px;
    transform: translateY(0);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*Krishna*/
.header-bg {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: visible; /* very important */
}

    /* create angled cut */
    .header-bg::after {
        content: "";
        position: absolute;
        left: -18px;
        top: 0;
        width: 40px;
        height: 100%;
        background-color: var(--light-gray);
        transform: skewX(-30deg);
    }

header .main-menu-link,
header .main-menu-link:hover,
header .group:hover > .main-menu-link {
    color: #ffffff !important;
}


.banner-heading {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

#dps-international-ghana-inner-banner {
    background: url('../images/dps-theme-banner-img.png'),url('../images/dps-theme-banner-img.webp');
}

.nav-spacing {
    justify-content: space-between;
    padding-right: 44px;
}

@media(max-width: 1200px) and (min-width: 992px) {
    .nav-spacing {
        justify-content: space-between;
        padding-right: 16px;
    }

    .links-shift {
        padding-left: 11px;
    }
}

#explore-infrastructure .infra-img {
    overflow: hidden;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 5px !important;
    background: #fff !important;
}

#home-banner {
    background: #fff !important;
}

#closeModal {
    cursor: pointer !important;
}

@media(min-width: 768px) {
    #modalContent, #parentsModalContent {
        max-width: 45% !important;
    }
}


/*manan*/

.custom-txt p a {
    font-size: 15px !important;
}

.custom-txt p {
    font-weight: 500 !important;
    font-size: 15px !important;
}

.content-shift {
    margin-left: 75px;
}

.dps-international-ghana-footer-logo img {
    width: 215px;
}

@media(max-width: 1200px) {
    .content-shift {
        margin-left: 35px;
    }
}

@media(max-width: 768px) {
    .content-shift {
        margin-left: 0px;
    }

    .dps-international-ghana-footer-logo img {
        width: 180px;
    }
}

.btn-theme {
    position: relative;
    display: inline-block;
    padding: 7px 25px;
    border: 1px solid #045F04;
    color: #045F04;
    background-color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

    /* Triangle with gap */
    .btn-theme::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 2px;
        width: 0;
        height: 0;
        border-top: 16px solid #045F04;
        border-left: 16px solid transparent;
    }

    /* Hover */
    .btn-theme:hover {
        background-color: #045F04;
        color: #fff;
    }

        .btn-theme:hover::after {
            border-top-color: #fff;
        }


.custom-img-size img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

.custom-img-sizes img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

@media(max-width: 1200px) {
    .custom-img-size img {
        height: 257px;
    }
}


@media(max-width: 768px) {
    .custom-img-size img {
        height: 382px;
    }
}

.btn-transparent {
    position: relative;
    display: inline-block;
    padding: 7px 25px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-transparent::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 2px;
        width: 0;
        height: 0;
        border-top: 16px solid #ffffff;
        border-left: 16px solid transparent;
    }

    /* Hover */
    .btn-transparent:hover {
        background-color: #ffffff;
        color: #045F04; /* matches your section bg */
    }

        .btn-transparent:hover::after {
            border-top-color: #045F04;
        }



@media(max-width: 992px) {
    .btn-theme, .btn-transparent {
        padding: 4px 23px !important;
    }
}


/*aaftab*/

.text-gold {
    color: #CC9933;
}

.bg-gold {
    background-color: #cc9933e0;
}

.bg-dgreen {
    background-color: #1e6b1e;
}

.text-muted {
    color: #aaaaaa;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    min-height: 62vh;
}



.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*            grid-template-rows: 185px 185px;
*/ gap: 22px;
    position: relative;
}

.images-tall {
    grid-row: 1 / 3;
}

.images-grid images {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.shield {
    width: 54px;
    height: 62px;
    clip-path: polygon(50% 0%, 100% 14%, 100% 62%, 50% 100%, 0% 62%, 0% 14%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    /*width: 100px;*/
    width: 22% !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transform: translate(-50%, -50%);
    z-index: 10;
    border-radius: 50%;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 12px 20px;
}

.phone-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1e6b1e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.est-number {
    font-size: 84px;
    line-height: 1;
}

.label-line {
    display: inline-block;
    width: 26px;
    height: 1.5px;
    background-color: #c8960c;
}

.label-line-sm {
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background-color: #c8960c;
}

.stat-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 1.5rem 1.25rem;
    overflow: visible !important; /* icons bahar nikal sakein */
    position: relative;
}

@media (min-width:992px) {
    .stat-card {
        min-height: 289px;
    }
}

@media (min-width:1200px) {
    .stat-card {
        min-height: 255px;
    }
}

.achievements-swiper {
    height: 280px;
}

@media (min-width: 768px) {
    .achievements-swiper {
        height: 350px;
    }
}

.achievements-swiper .swiper-pagination,
.achievements-swiper .swiper-button-prev,
.achievements-swiper .swiper-button-next {
    display: none !important;
}

.shield-top {
    margin-top: -46px;
    margin-bottom: 16px;
}

.hero-box-shadow {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

/*banner*/

.inner-banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover !important;
}

#dps-international-ghana-gallery-banner {
    background: url(../images/dps-gallery-banner-img.png), url(../images/dps-gallery-banner-img.webp);
}

#dps-international-ghana-activities-banner {
    background: url(../images/dps-gallery-banner-img.png), url(../images/dps-activities-banner-img.webp);
}

.bar {
    transition: height 1.5s ease-out;
}

.icon-filter {
    filter: brightness(0) invert(1); /* white */
}

.group:hover .icon-filter {
    filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(694%) hue-rotate(82deg) brightness(90%) contrast(90%);
    /* approx #045F04 */
}

#infrastructure .list-dots {
    list-style: disc;
    margin-left: 21px;
}

#achievements-section img {
    width: 100%;
    height: 317px;
    object-fit: cover;
}

.menu-link.active{
    color: #045F04 !important;
    font-weight: 600 !important;
}