/*--------------------------------------------------------------

--------------------------------------------------------------*/
/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf")
        format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf")
        format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf")
        format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-Bold.ttf")
        format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*--------------------------------------------------------------
** Body Font
----------------------------------------------------------------*/
@font-face {
    font-family: "Manrop";
    src: url("../fonts/Manrope/static/Manrope-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Manrop";
    src: url("../fonts/Manrope/static/Manrope-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Manrop";
    src: url("../fonts/Manrope/static/Manrope-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Manrop";
    src: url("../fonts/Manrope/static/Manrope-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
    --white-color: #fff;
    --white01-color: #f2f2f2;
    --heading-color: #131313;
    --body-color: #555;
    --primary-color: #ef5e1f;
    --secondary-color: #f9d61c;
    --optional-color: #d3ae37;
    --light-color: #c8eafb;
    --grayshade1-color: #555555;
    --grayshade2-color: #888;
    --grayshade3-color: #aaa;
    --grayshade4-color: #eaeaea;
    --purpul01-color: #3c096c;
    --page-color: #fcfcfa;
    --footer-linear: #ffffff;
    --footer02-color: #434343;
    --bg02-color: #fbf4ef;
    --bg03-color: #f2eff4;
    --heading-font: "Montserrat", sans-serif;
    --body-font: "manrop", sans-serif;
}

/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body,
html {
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 500;
    overflow-x: clip;
}

body {
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2em;
    font-family: var(--heading-font);
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
}

ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6em;
    margin: 0;
}

address {
    margin: 0 0 15px;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button {
    color: inherit;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--optional-color);
}

/*--------------------------------------------------------------
2. Animation
----------------------------------------------------------------*/
@-webkit-keyframes particalAnimation {
    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(50px, -10px);
        transform: translate(50px, -10px);
    }

    40% {
        -webkit-transform: translate(100px, 60px);
        transform: translate(100px, 60px);
    }

    60% {
        -webkit-transform: translate(60px, 90px);
        transform: translate(60px, 90px);
    }

    80% {
        -webkit-transform: translate(-30px, 60px);
        transform: translate(-30px, 60px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes particalAnimation {
    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(50px, -10px);
        transform: translate(50px, -10px);
    }

    40% {
        -webkit-transform: translate(100px, 60px);
        transform: translate(100px, 60px);
    }

    60% {
        -webkit-transform: translate(60px, 90px);
        transform: translate(60px, 90px);
    }

    80% {
        -webkit-transform: translate(-30px, 60px);
        transform: translate(-30px, 60px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes animo-x {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }
}

@keyframes animo-x {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }
}

@-webkit-keyframes animo-y {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes animo-y {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@-webkit-keyframes rotate-anim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-anim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes semi-rotate-anim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

@keyframes semi-rotate-anim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

@-webkit-keyframes up-down-anim {
    40% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(40px) rotate(-1deg);
        transform: translateY(40px) rotate(-1deg);
    }
}

@keyframes up-down-anim {
    40% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(40px) rotate(-1deg);
        transform: translateY(40px) rotate(-1deg);
    }
}

@-webkit-keyframes swing-anim {
    65% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(-48px) rotate(-75deg);
        transform: translateY(-48px) rotate(-75deg);
    }
}

@keyframes swing-anim {
    65% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(-48px) rotate(-75deg);
        transform: translateY(-48px) rotate(-75deg);
    }
}

@-webkit-keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }

    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }

    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

@keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }

    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }

    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

.td_scrollup {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background-color: var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
    -webkit-box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
    box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
    cursor: pointer;
}

.td_scrollup::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11)
        infinite;
    animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}

.td_scrollup.td_scrollup_show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.td_scrollup i {
    position: relative;
    z-index: 2;
}

@-webkit-keyframes scale_full {
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

@keyframes scale_full {
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}

/* End Scroll Up */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

/*--------------------------------------------------------------
3. Height
----------------------------------------------------------------*/

@media screen and (min-width: 992px) {
    .td_height_1 {
        height: 1px;
    }

    .td_height_2 {
        height: 2px;
    }

    .td_height_3 {
        height: 3px;
    }

    .td_height_4 {
        height: 4px;
    }

    .td_height_5 {
        height: 5px;
    }

    .td_height_6 {
        height: 6px;
    }

    .td_height_7 {
        height: 7px;
    }

    .td_height_8 {
        height: 8px;
    }

    .td_height_9 {
        height: 9px;
    }

    .td_height_10 {
        height: 10px;
    }

    .td_height_11 {
        height: 11px;
    }

    .td_height_12 {
        height: 12px;
    }

    .td_height_13 {
        height: 13px;
    }

    .td_height_14 {
        height: 14px;
    }

    .td_height_15 {
        height: 15px;
    }

    .td_height_16 {
        height: 16px;
    }

    .td_height_17 {
        height: 17px;
    }

    .td_height_18 {
        height: 18px;
    }

    .td_height_19 {
        height: 19px;
    }

    .td_height_20 {
        height: 20px;
    }

    .td_height_21 {
        height: 21px;
    }

    .td_height_22 {
        height: 22px;
    }

    .td_height_23 {
        height: 23px;
    }

    .td_height_24 {
        height: 24px;
    }

    .td_height_25 {
        height: 25px;
    }

    .td_height_26 {
        height: 26px;
    }

    .td_height_27 {
        height: 27px;
    }

    .td_height_28 {
        height: 28px;
    }

    .td_height_29 {
        height: 29px;
    }

    .td_height_30 {
        height: 30px;
    }

    .td_height_31 {
        height: 31px;
    }

    .td_height_32 {
        height: 32px;
    }

    .td_height_33 {
        height: 33px;
    }

    .td_height_34 {
        height: 34px;
    }

    .td_height_35 {
        height: 35px;
    }

    .td_height_36 {
        height: 36px;
    }

    .td_height_37 {
        height: 37px;
    }

    .td_height_38 {
        height: 38px;
    }

    .td_height_39 {
        height: 39px;
    }

    .td_height_40 {
        height: 40px;
    }

    .td_height_41 {
        height: 41px;
    }

    .td_height_42 {
        height: 42px;
    }

    .td_height_43 {
        height: 43px;
    }

    .td_height_44 {
        height: 44px;
    }

    .td_height_45 {
        height: 45px;
    }

    .td_height_46 {
        height: 46px;
    }

    .td_height_47 {
        height: 47px;
    }

    .td_height_48 {
        height: 48px;
    }

    .td_height_49 {
        height: 49px;
    }

    .td_height_50 {
        height: 50px;
    }

    .td_height_51 {
        height: 51px;
    }

    .td_height_52 {
        height: 52px;
    }

    .td_height_53 {
        height: 53px;
    }

    .td_height_54 {
        height: 54px;
    }

    .td_height_55 {
        height: 55px;
    }

    .td_height_56 {
        height: 56px;
    }

    .td_height_57 {
        height: 57px;
    }

    .td_height_58 {
        height: 58px;
    }

    .td_height_59 {
        height: 59px;
    }

    .td_height_60 {
        height: 60px;
    }

    .td_height_61 {
        height: 61px;
    }

    .td_height_62 {
        height: 62px;
    }

    .td_height_63 {
        height: 63px;
    }

    .td_height_64 {
        height: 64px;
    }

    .td_height_65 {
        height: 65px;
    }

    .td_height_66 {
        height: 66px;
    }

    .td_height_67 {
        height: 67px;
    }

    .td_height_68 {
        height: 68px;
    }

    .td_height_69 {
        height: 69px;
    }

    .td_height_70 {
        height: 70px;
    }

    .td_height_71 {
        height: 71px;
    }

    .td_height_72 {
        height: 72px;
    }

    .td_height_73 {
        height: 73px;
    }

    .td_height_74 {
        height: 74px;
    }

    .td_height_75 {
        height: 75px;
    }

    .td_height_76 {
        height: 76px;
    }

    .td_height_77 {
        height: 77px;
    }

    .td_height_78 {
        height: 78px;
    }

    .td_height_79 {
        height: 79px;
    }

    .td_height_80 {
        height: 80px;
    }

    .td_height_81 {
        height: 81px;
    }

    .td_height_82 {
        height: 82px;
    }

    .td_height_83 {
        height: 83px;
    }

    .td_height_84 {
        height: 84px;
    }

    .td_height_85 {
        height: 85px;
    }

    .td_height_86 {
        height: 86px;
    }

    .td_height_87 {
        height: 87px;
    }

    .td_height_88 {
        height: 88px;
    }

    .td_height_89 {
        height: 89px;
    }

    .td_height_90 {
        height: 90px;
    }

    .td_height_91 {
        height: 91px;
    }

    .td_height_92 {
        height: 92px;
    }

    .td_height_93 {
        height: 93px;
    }

    .td_height_94 {
        height: 94px;
    }

    .td_height_95 {
        height: 95px;
    }

    .td_height_96 {
        height: 96px;
    }

    .td_height_97 {
        height: 97px;
    }

    .td_height_98 {
        height: 98px;
    }

    .td_height_99 {
        height: 99px;
    }

    .td_height_100 {
        height: 100px;
    }

    .td_height_101 {
        height: 101px;
    }

    .td_height_102 {
        height: 102px;
    }

    .td_height_103 {
        height: 103px;
    }

    .td_height_104 {
        height: 104px;
    }

    .td_height_105 {
        height: 105px;
    }

    .td_height_106 {
        height: 106px;
    }

    .td_height_107 {
        height: 107px;
    }

    .td_height_108 {
        height: 108px;
    }

    .td_height_109 {
        height: 109px;
    }

    .td_height_110 {
        height: 110px;
    }

    .td_height_111 {
        height: 111px;
    }

    .td_height_112 {
        height: 112px;
    }

    .td_height_113 {
        height: 113px;
    }

    .td_height_114 {
        height: 114px;
    }

    .td_height_115 {
        height: 115px;
    }

    .td_height_116 {
        height: 116px;
    }

    .td_height_117 {
        height: 117px;
    }

    .td_height_118 {
        height: 118px;
    }

    .td_height_119 {
        height: 119px;
    }

    .td_height_120 {
        height: 120px;
    }

    .td_height_121 {
        height: 121px;
    }

    .td_height_122 {
        height: 122px;
    }

    .td_height_123 {
        height: 123px;
    }

    .td_height_124 {
        height: 124px;
    }

    .td_height_125 {
        height: 125px;
    }

    .td_height_126 {
        height: 126px;
    }

    .td_height_127 {
        height: 127px;
    }

    .td_height_128 {
        height: 128px;
    }

    .td_height_129 {
        height: 129px;
    }

    .td_height_130 {
        height: 130px;
    }

    .td_height_131 {
        height: 131px;
    }

    .td_height_132 {
        height: 132px;
    }

    .td_height_133 {
        height: 133px;
    }

    .td_height_134 {
        height: 134px;
    }

    .td_height_135 {
        height: 135px;
    }

    .td_height_136 {
        height: 136px;
    }

    .td_height_137 {
        height: 137px;
    }

    .td_height_138 {
        height: 138px;
    }

    .td_height_139 {
        height: 139px;
    }

    .td_height_140 {
        height: 140px;
    }

    .td_height_141 {
        height: 141px;
    }

    .td_height_142 {
        height: 142px;
    }

    .td_height_143 {
        height: 143px;
    }

    .td_height_144 {
        height: 144px;
    }

    .td_height_145 {
        height: 145px;
    }

    .td_height_146 {
        height: 146px;
    }

    .td_height_147 {
        height: 147px;
    }

    .td_height_148 {
        height: 148px;
    }

    .td_height_149 {
        height: 149px;
    }

    .td_height_150 {
        height: 150px;
    }
}

@media screen and (max-width: 991px) {
    .td_mb_lg_1 {
        margin-bottom: 1px;
    }

    .td_mb_lg_2 {
        margin-bottom: 2px;
    }

    .td_mb_lg_3 {
        margin-bottom: 3px;
    }

    .td_mb_lg_4 {
        margin-bottom: 4px;
    }

    .td_mb_lg_5 {
        margin-bottom: 5px;
    }

    .td_mb_lg_6 {
        margin-bottom: 6px;
    }

    .td_mb_lg_7 {
        margin-bottom: 7px;
    }

    .td_mb_lg_8 {
        margin-bottom: 8px;
    }

    .td_mb_lg_9 {
        margin-bottom: 9px;
    }

    .td_mb_lg_10 {
        margin-bottom: 10px;
    }

    .td_mb_lg_11 {
        margin-bottom: 11px;
    }

    .td_mb_lg_12 {
        margin-bottom: 12px;
    }

    .td_mb_lg_13 {
        margin-bottom: 13px;
    }

    .td_mb_lg_14 {
        margin-bottom: 14px;
    }

    .td_mb_lg_15 {
        margin-bottom: 15px;
    }

    .td_mb_lg_16 {
        margin-bottom: 16px;
    }

    .td_mb_lg_17 {
        margin-bottom: 17px;
    }

    .td_mb_lg_18 {
        margin-bottom: 18px;
    }

    .td_mb_lg_19 {
        margin-bottom: 19px;
    }

    .td_mb_lg_20 {
        margin-bottom: 20px;
    }

    .td_mb_lg_21 {
        margin-bottom: 21px;
    }

    .td_mb_lg_22 {
        margin-bottom: 22px;
    }

    .td_mb_lg_23 {
        margin-bottom: 23px;
    }

    .td_mb_lg_24 {
        margin-bottom: 24px;
    }

    .td_mb_lg_25 {
        margin-bottom: 25px;
    }

    .td_mb_lg_26 {
        margin-bottom: 26px;
    }

    .td_mb_lg_27 {
        margin-bottom: 27px;
    }

    .td_mb_lg_28 {
        margin-bottom: 28px;
    }

    .td_mb_lg_29 {
        margin-bottom: 29px;
    }

    .td_mb_lg_30 {
        margin-bottom: 30px;
    }

    .td_mb_lg_31 {
        margin-bottom: 31px;
    }

    .td_mb_lg_32 {
        margin-bottom: 32px;
    }

    .td_mb_lg_33 {
        margin-bottom: 33px;
    }

    .td_mb_lg_34 {
        margin-bottom: 34px;
    }

    .td_mb_lg_35 {
        margin-bottom: 35px;
    }

    .td_mb_lg_36 {
        margin-bottom: 36px;
    }

    .td_mb_lg_37 {
        margin-bottom: 37px;
    }

    .td_mb_lg_38 {
        margin-bottom: 38px;
    }

    .td_mb_lg_39 {
        margin-bottom: 39px;
    }

    .td_mb_lg_40 {
        margin-bottom: 40px;
    }

    .td_mb_lg_41 {
        margin-bottom: 41px;
    }

    .td_mb_lg_42 {
        margin-bottom: 42px;
    }

    .td_mb_lg_43 {
        margin-bottom: 43px;
    }

    .td_mb_lg_44 {
        margin-bottom: 44px;
    }

    .td_mb_lg_45 {
        margin-bottom: 45px;
    }

    .td_mb_lg_46 {
        margin-bottom: 46px;
    }

    .td_mb_lg_47 {
        margin-bottom: 47px;
    }

    .td_mb_lg_48 {
        margin-bottom: 48px;
    }

    .td_mb_lg_49 {
        margin-bottom: 49px;
    }

    .td_mb_lg_50 {
        margin-bottom: 50px;
    }

    .td_mb_lg_51 {
        margin-bottom: 51px;
    }

    .td_mb_lg_52 {
        margin-bottom: 52px;
    }

    .td_mb_lg_53 {
        margin-bottom: 53px;
    }

    .td_mb_lg_54 {
        margin-bottom: 54px;
    }

    .td_mb_lg_55 {
        margin-bottom: 55px;
    }

    .td_mb_lg_56 {
        margin-bottom: 56px;
    }

    .td_mb_lg_57 {
        margin-bottom: 57px;
    }

    .td_mb_lg_58 {
        margin-bottom: 58px;
    }

    .td_mb_lg_59 {
        margin-bottom: 59px;
    }

    .td_mb_lg_60 {
        margin-bottom: 60px;
    }

    .td_height_lg_1 {
        height: 1px;
    }

    .td_height_lg_2 {
        height: 2px;
    }

    .td_height_lg_3 {
        height: 3px;
    }

    .td_height_lg_4 {
        height: 4px;
    }

    .td_height_lg_5 {
        height: 5px;
    }

    .td_height_lg_6 {
        height: 6px;
    }

    .td_height_lg_7 {
        height: 7px;
    }

    .td_height_lg_8 {
        height: 8px;
    }

    .td_height_lg_9 {
        height: 9px;
    }

    .td_height_lg_10 {
        height: 10px;
    }

    .td_height_lg_11 {
        height: 11px;
    }

    .td_height_lg_12 {
        height: 12px;
    }

    .td_height_lg_13 {
        height: 13px;
    }

    .td_height_lg_14 {
        height: 14px;
    }

    .td_height_lg_15 {
        height: 15px;
    }

    .td_height_lg_16 {
        height: 16px;
    }

    .td_height_lg_17 {
        height: 17px;
    }

    .td_height_lg_18 {
        height: 18px;
    }

    .td_height_lg_19 {
        height: 19px;
    }

    .td_height_lg_20 {
        height: 20px;
    }

    .td_height_lg_21 {
        height: 21px;
    }

    .td_height_lg_22 {
        height: 22px;
    }

    .td_height_lg_23 {
        height: 23px;
    }

    .td_height_lg_24 {
        height: 24px;
    }

    .td_height_lg_25 {
        height: 25px;
    }

    .td_height_lg_26 {
        height: 26px;
    }

    .td_height_lg_27 {
        height: 27px;
    }

    .td_height_lg_28 {
        height: 28px;
    }

    .td_height_lg_29 {
        height: 29px;
    }

    .td_height_lg_30 {
        height: 30px;
    }

    .td_height_lg_31 {
        height: 31px;
    }

    .td_height_lg_32 {
        height: 32px;
    }

    .td_height_lg_33 {
        height: 33px;
    }

    .td_height_lg_34 {
        height: 34px;
    }

    .td_height_lg_35 {
        height: 35px;
    }

    .td_height_lg_36 {
        height: 36px;
    }

    .td_height_lg_37 {
        height: 37px;
    }

    .td_height_lg_38 {
        height: 38px;
    }

    .td_height_lg_39 {
        height: 39px;
    }

    .td_height_lg_40 {
        height: 40px;
    }

    .td_height_lg_41 {
        height: 41px;
    }

    .td_height_lg_42 {
        height: 42px;
    }

    .td_height_lg_43 {
        height: 43px;
    }

    .td_height_lg_44 {
        height: 44px;
    }

    .td_height_lg_45 {
        height: 45px;
    }

    .td_height_lg_46 {
        height: 46px;
    }

    .td_height_lg_47 {
        height: 47px;
    }

    .td_height_lg_48 {
        height: 48px;
    }

    .td_height_lg_49 {
        height: 49px;
    }

    .td_height_lg_50 {
        height: 50px;
    }

    .td_height_lg_51 {
        height: 51px;
    }

    .td_height_lg_52 {
        height: 52px;
    }

    .td_height_lg_53 {
        height: 53px;
    }

    .td_height_lg_54 {
        height: 54px;
    }

    .td_height_lg_55 {
        height: 55px;
    }

    .td_height_lg_56 {
        height: 56px;
    }

    .td_height_lg_57 {
        height: 57px;
    }

    .td_height_lg_58 {
        height: 58px;
    }

    .td_height_lg_59 {
        height: 59px;
    }

    .td_height_lg_60 {
        height: 60px;
    }

    .td_height_lg_61 {
        height: 61px;
    }

    .td_height_lg_62 {
        height: 62px;
    }

    .td_height_lg_63 {
        height: 63px;
    }

    .td_height_lg_64 {
        height: 64px;
    }

    .td_height_lg_65 {
        height: 65px;
    }

    .td_height_lg_66 {
        height: 66px;
    }

    .td_height_lg_67 {
        height: 67px;
    }

    .td_height_lg_68 {
        height: 68px;
    }

    .td_height_lg_69 {
        height: 69px;
    }

    .td_height_lg_70 {
        height: 70px;
    }

    .td_height_lg_71 {
        height: 71px;
    }

    .td_height_lg_72 {
        height: 72px;
    }

    .td_height_lg_73 {
        height: 73px;
    }

    .td_height_lg_74 {
        height: 74px;
    }

    .td_height_lg_75 {
        height: 75px;
    }

    .td_height_lg_76 {
        height: 76px;
    }

    .td_height_lg_77 {
        height: 77px;
    }

    .td_height_lg_78 {
        height: 78px;
    }

    .td_height_lg_79 {
        height: 79px;
    }

    .td_height_lg_80 {
        height: 80px;
    }

    .td_height_lg_81 {
        height: 81px;
    }

    .td_height_lg_82 {
        height: 82px;
    }

    .td_height_lg_83 {
        height: 83px;
    }

    .td_height_lg_84 {
        height: 84px;
    }

    .td_height_lg_85 {
        height: 85px;
    }

    .td_height_lg_86 {
        height: 86px;
    }

    .td_height_lg_87 {
        height: 87px;
    }

    .td_height_lg_88 {
        height: 88px;
    }

    .td_height_lg_89 {
        height: 89px;
    }

    .td_height_lg_90 {
        height: 90px;
    }

    .td_height_lg_91 {
        height: 91px;
    }

    .td_height_lg_92 {
        height: 92px;
    }

    .td_height_lg_93 {
        height: 93px;
    }

    .td_height_lg_94 {
        height: 94px;
    }

    .td_height_lg_95 {
        height: 95px;
    }

    .td_height_lg_96 {
        height: 96px;
    }

    .td_height_lg_97 {
        height: 97px;
    }

    .td_height_lg_98 {
        height: 98px;
    }

    .td_height_lg_99 {
        height: 99px;
    }

    .td_height_lg_100 {
        height: 100px;
    }

    .td_height_lg_101 {
        height: 101px;
    }

    .td_height_lg_102 {
        height: 102px;
    }

    .td_height_lg_103 {
        height: 103px;
    }

    .td_height_lg_104 {
        height: 104px;
    }

    .td_height_lg_105 {
        height: 105px;
    }

    .td_height_lg_106 {
        height: 106px;
    }

    .td_height_lg_107 {
        height: 107px;
    }

    .td_height_lg_108 {
        height: 108px;
    }

    .td_height_lg_109 {
        height: 109px;
    }

    .td_height_lg_110 {
        height: 110px;
    }

    .td_height_lg_111 {
        height: 111px;
    }

    .td_height_lg_112 {
        height: 112px;
    }

    .td_height_lg_113 {
        height: 113px;
    }

    .td_height_lg_114 {
        height: 114px;
    }

    .td_height_lg_115 {
        height: 115px;
    }

    .td_height_lg_116 {
        height: 116px;
    }

    .td_height_lg_117 {
        height: 117px;
    }

    .td_height_lg_118 {
        height: 118px;
    }

    .td_height_lg_119 {
        height: 119px;
    }

    .td_height_lg_120 {
        height: 120px;
    }

    .td_height_lg_121 {
        height: 121px;
    }

    .td_height_lg_122 {
        height: 122px;
    }

    .td_height_lg_123 {
        height: 123px;
    }

    .td_height_lg_124 {
        height: 124px;
    }

    .td_height_lg_125 {
        height: 125px;
    }

    .td_height_lg_126 {
        height: 126px;
    }

    .td_height_lg_127 {
        height: 127px;
    }

    .td_height_lg_128 {
        height: 128px;
    }

    .td_height_lg_129 {
        height: 129px;
    }

    .td_height_lg_130 {
        height: 130px;
    }

    .td_height_lg_131 {
        height: 131px;
    }

    .td_height_lg_132 {
        height: 132px;
    }

    .td_height_lg_133 {
        height: 133px;
    }

    .td_height_lg_134 {
        height: 134px;
    }

    .td_height_lg_135 {
        height: 135px;
    }

    .td_height_lg_136 {
        height: 136px;
    }

    .td_height_lg_137 {
        height: 137px;
    }

    .td_height_lg_138 {
        height: 138px;
    }

    .td_height_lg_139 {
        height: 139px;
    }

    .td_height_lg_140 {
        height: 140px;
    }

    .td_height_lg_141 {
        height: 141px;
    }

    .td_height_lg_142 {
        height: 142px;
    }

    .td_height_lg_143 {
        height: 143px;
    }

    .td_height_lg_144 {
        height: 144px;
    }

    .td_height_lg_145 {
        height: 145px;
    }

    .td_height_lg_146 {
        height: 146px;
    }

    .td_height_lg_147 {
        height: 147px;
    }

    .td_height_lg_148 {
        height: 148px;
    }

    .td_height_lg_149 {
        height: 149px;
    }

    .td_height_lg_150 {
        height: 150px;
    }
}

/*--------------------------------------------------------------
3. Header
----------------------------------------------------------------*/
.main-header {
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header.sticky {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.potent-logo {
    height: 40px;
    padding: 6px;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: var(--heading-color);
    font-weight: 700;
    padding: 10px 15px !important;
    font-size: 16px;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    border-radius: 7px;
    box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 20px;
    border-bottom: 1px solid var(--grayshade4-color) !important;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background-color: var(--grayshade5-color);
}

.enroll-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 18px;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
}

.enroll-btn:hover {
    background-color: var(--purpul01-color);
    color: var(--white-color);
}

.side-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 85%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 30px;
}

.side-modal.show {
    transform: translateX(0);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.modal-overlay.show {
    display: block;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: var(--secondary-color);
    background: none;
    border: none;
    z-index: 10000;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.main-header .navbar-brand {
    margin-right: 30px;
}

.main-header .navbar-nav {
    flex: 1;
    justify-content: center;
}

.main-header .d-lg-flex {
    align-items: center;
}

.main-header .enroll-btn {
    margin-right: 15px;
}

.mobile-enroll {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20%;
    display: inline-block;
    margin: 8px auto;
    text-align: center;
    max-width: 150px;
}

.mobile-enroll:hover {
    background-color: var(--optional-color);
    border: none !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .main-header .navbar-nav {
        justify-content: start;
        padding: 10px 0;
    }

    .main-header .d-lg-flex {
        display: none !important;
    }

    .mobile-enroll {
        display: block !important;
        width: 100%;
        text-align: center;
        margin: 10px 0;
        padding: 10px;
    }

    .college-logo {
        height: 70px;
        margin-top: 0;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .nav-link {
        padding: 10px 15px;
    }

    /* Mobile Dropdown Fix */
    .dropdown-menu {
        display: none; /* default hidden */
        box-shadow: none;
        border: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Show dropdown when Bootstrap adds 'show' */
    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        transition: none;
    }
}

/*
.............................................
1.hero section ............................
................................................ */

.hero-section {
    position: relative;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        url("/assets/frontend/img/bannerIMG.jpg") center top/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white-color);
    padding: 70px 20px;
    box-sizing: border-box;
}

.hero-content {
    text-align: left;
    margin-left: auto;
}

.hero-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white-color);
}

.hero-content h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--white-color);
    line-height: 1.9;
}

.primary-dot {
    color: var(--primary-color);
}

#animated-word {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.fade-in {
    opacity: 1;
    transform: scale(1);
}

.btn-orange,
.btn-purple {
    border-radius: 20px;
    padding: 8px 16px !important;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}

.btn-orange {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-orange:hover {
    border: 1px solid var(--primary-color);
    background-color: rgba(239, 94, 31, 0.2);
    color: #fff;
}

.btn-purple {
    background-color: var(--purpul01-color);
    color: #fff;
}

.btn-purple:hover {
    background-color: #fff !important;
    color: var(--purpul01-color);
}

/* ==============================
   Extra Large Devices (≥ 1400px)
================================= */
@media (min-width: 1400px) {
    .hero-section {
        height: 70vh;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .btn-orange,
    .btn-purple {
        padding: 12px 24px;
        font-size: 17px;
    }
}

/* ==============================
   Large Devices (1200px – 1399px)
================================= */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-section {
        height: 80vh;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* ==============================
   Medium-Large Devices (992px – 1199px)
================================= */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ==============================
   Tablets (768px – 991px)
================================= */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-orange,
    .btn-purple {
        padding: 8px 16px;
        font-size: 15px;
    }
}

/* ==============================
   Large Mobiles (577px – 767px)
================================= */
@media (min-width: 577px) and (max-width: 767px) {
    .hero-section {
        padding-top: 120px;
    }

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

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-orange,
    .btn-purple {
        padding: 7px 14px;
        font-size: 14px;
    }
}

/* ==============================
   Small Mobiles (≤ 576px)
================================= */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 140px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content h6 {
        font-size: 14px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .btn-orange,
    .btn-purple {
        padding: 6px 12px;
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/*
......................................
2.partners section....................
...................................... */
.partners-section {
    background-color: rgba(242, 234, 244, 1);
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.partner-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--grayshade1-color);
    font-size: 20px;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    width: 100px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.partners-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.partners-container:before,
.partners-container:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .partner-item {
        width: 120px;
        margin: 0 15px;
    }

    .partner-logo {
        max-height: 120px;
    }

    .partner-title {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .partner-item {
        width: 100px;
        margin: 0 10px;
    }

    .partner-logo {
        max-height: 100px;
    }

    .partners-container:before,
    .partners-container:after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .partner-item {
        width: 80px;
        margin: 0 8px;
    }

    .partner-logo {
        max-height: 80px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .container1 {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* .....................................
3.services section...................
..................................... */
.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}

.section-subtitle span {
    color: var(--primary-color);
    margin-left: 5px;
}

.service-icon {
    display: flex;
    margin: 15px 0;
    width: 100%;
}

.service-icon img {
    width: 35px;
    height: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    text-align: left;
    width: 100%;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--grayshade1-color);
    max-width: 90%;
    font-weight: 400 !important;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.services-list li {
    border: 1px solid var(--grayshade1-color);
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--grayshade1-color);
    transition: all 0.3s ease;
}

.services-list li:hover {
    background: rgba(58, 123, 213, 0.05);
    border-color: var(--primary-color);
}

.btn-default {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(58, 123, 213, 0.2);
    min-width: 100px;
}

.btn-default:hover {
    transform: translateY(-3px);
    border: 1px solid var(--primary-color);
    background-color: rgba(239, 94, 31, 0.2);
    color: var(--purpul01-color);
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 60px;
}

.service-block .service-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 300px;
}

.service-block:nth-child(even) .service-image {
    justify-content: flex-start;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.btn-wrapper {
    text-align: left;
}

@media (max-width: 992px) {
    .service-block {
        flex-direction: column;
        text-align: center;
    }

    .section-title,
    .section-subtitle,
    .section-description,
    .service-icon {
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .service-image {
        order: 2;
        justify-content: center !important;
        margin: 15px 0;
    }

    .services-list {
        order: 3;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .services-list li {
        width: 100%;
        text-align: center;
    }

    .service-icon {
        order: 1;
        margin: 10px auto;
    }

    .service-icon img {
        width: 30px;
    }

    .btn-wrapper {
        order: 4;
        text-align: center;
        margin-top: 20px;
    }
}

@media (min-width: 1400px) {
    .service-image img {
        max-width: 500px;
    }
}

/* .....................................
4.testimonial section................
...................................... */
.testimonials-section {
    padding: 40px 0;
    background-color: var(--bg02-color);
}

.navigation-arrows {
    display: flex;
    gap: 15px;
}

.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--purpul01-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: var(--white-color);
}

.arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.open-quote {
    font-size: 50px;
    color: var(--primary-color);
    line-height: 0.5;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--grayshade1-color);
    flex-grow: 1;
}

.close-quote {
    font-size: 50px;
    color: var(--primary-color);
    display: block;
    text-align: right;
    line-height: 0.5;
    margin-top: 10px;
}

.testimonial-divider {
    border-bottom: 1px solid var(--grayshade3-color);
    margin: 15px 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--purpul01-color);
}

.client-details h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.client-details p {
    font-size: 12px;
    color: var(--grayshade1-color);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1199px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-height: 380px;
    }

    .navigation-arrows {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .client-image {
        width: 50px;
        height: 50px;
    }

    .client-details h4 {
        font-size: 15px;
    }

    .client-details p {
        font-size: 13px;
    }
}

/* .....................................
5.Blogs section................
...................................... */
.blog-section {
    background: #fdfdfd;
}

.btn-purple {
    background-color: #4b0082;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    border: 1px solid var(--purpul01-color);
    color: var(--purpul01-color);
    background-color: rgba(60, 9, 108, 0.1);
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
}

/* .....................................
6.Contact section................
...................................... */
.contact-section {
    padding: 80px 0;
    background: var(--bg02-color);
    color: white;
}

.contact-card {
    background: var(--white-color);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}

.contact-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.contact-card p {
    color: var(--grayshade1-color);
    line-height: 1.6;
}

.contact-card h5 {
    font-size: 18px;
    margin-top: 30px;
    color: var(--heading-color);
}

.contact-info {
    align-items: flex-start;
}

.contact-info .icon {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info .icon i {
    color: var(--purpul01-color);
    font-size: 16px;
}

.contact-info p {
    color: var(--heading-color);
    margin-bottom: 5px;
}

.form-control,
.form-select {
    background: rgba(242, 242, 242, 1);
    border-radius: 10px;
    color: rgba(170, 170, 170, 1) !important;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control::placeholder,
.form-select:disabled {
    color: var(--grayshade1-color);
}

.form-select option {
    background: var(--bg03-color);
    color: var(--grayshade1-color);
}

.contact-card .form-label {
    display: block;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .contact-card {
        padding: 30px;
    }

    .contact-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-info .icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 22px;
    }
}

/*
..............................
7.footer......................
................................. */
.footer {
    background-color: #3c096c;
    color: white;
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: white;
}

.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 15px;
}

.company-info {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.divider {
    position: relative;
}

.divider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-col:last-child.divider::after {
    display: none;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #ddd;
    font-size: 14px;
}

@media (max-width: 992px) {
    .divider::after {
        display: none;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 40px;
    }
}

/* ...................................
page 2. About us.................... */

.page-banner {
    background: rgba(242, 242, 242, 1);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-custom {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.breadcrumb-custom .breadcrumb-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 700;
}

.breadcrumb-custom span {
    font-weight: 700;
}

.breadcrumb-custom .active {
    color: var(--primary-color);
    font-weight: 700;
}

.page-banner h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.page-banner p {
    font-size: 14px !important;
    color: var(--grayshade1-color);
}

.page-banner .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner .circle-purple {
    width: 100px;
    height: 100px;
    z-index: 2;
    position: relative;
    right: -10px;
    top: -25px;
}

.page-banner .circle-orange {
    width: 300px;
    height: auto;
    position: absolute;
    top: -80px;
    right: -10px;
    z-index: 1;
}

/* ==============================
   Extra Large Devices (≥ 1400px)
================================= */
@media (min-width: 1400px) {
    .page-banner h1 {
        font-size: 40px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .page-banner .circle-purple {
        width: 120px;
        height: 120px;
    }

    .page-banner .circle-orange {
        width: 350px;
    }
}

/* ==============================
   Large Devices (1200px – 1399px)
================================= */
@media (min-width: 1200px) and (max-width: 1399px) {
    .page-banner h1 {
        font-size: 36px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .page-banner .circle-orange {
        width: 320px;
    }
}

/* ==============================
   Medium-Large Devices (992px – 1199px)
================================= */
@media (min-width: 992px) and (max-width: 1199px) {
    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 14px;
    }

    .page-banner .circle-purple {
        width: 90px;
        height: 90px;
    }

    .page-banner .circle-orange {
        width: 250px;
    }
}

/* ==============================
   Tablets (768px – 991px)
================================= */
@media (min-width: 768px) and (max-width: 991px) {
    .page-banner {
        text-align: left;
        padding: 60px 20px 40px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .page-banner p {
        margin: 0 auto;
        font-size: 14px;
        width: 100%;
    }

    .page-banner .image-wrapper {
        margin-top: 30px;
    }

    .page-banner .circle-purple {
        width: 80px;
        height: 80px;
        top: -50px;
    }

    .page-banner .circle-orange {
        width: 220px;
        right: -15px;
        top: -80px;
    }
}

/* ==============================
   Large Mobiles (577px – 767px)
================================= */
@media (min-width: 577px) and (max-width: 767px) {
    .page-banner {
        padding: 50px 15px 35px;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .page-banner p {
        font-size: 14px;
    }

    .page-banner .circle-purple,
    .page-banner .circle-orange {
        display: none;
    }
}

/* ==============================
   Small Mobiles (≤ 576px)
================================= */
@media (max-width: 576px) {
    .page-banner {
        margin-top: 30px;
        padding: 40px 15px 30px;
    }

    .page-banner h1 {
        font-size: 22px !important;
    }

    .page-banner p {
        font-size: 14px !important;
    }

    .page-banner .circle-purple,
    .page-banner .circle-orange {
        display: none;
    }
}

/* ......................................
ABOUT SECTION......................... */
.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-section p {
    font-size: 16px;
    color: var(--grayshade1-color);
    line-height: 1.6;
    text-align: justify;
}

.about-image-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-top: 30px;
        justify-content: center;
    }

    .section-title {
        font-size: 22px;
    }

    .about-section p {
        font-size: 15px;
    }
}

.mission-card {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.vision-card {
    border: 1px solid var(--purpul01-color);
    border-radius: 10px;
}

.card-text {
    text-align: justify;
}

@media (max-width: 768px) {
    .mission-card,
    .vision-card {
        margin: 0 auto;
    }

    .card-title {
        font-size: 28px;
    }
}

.core-values-section {
    background-color: rgba(251, 244, 239, 1);
}

.value-title {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.value-description {
    font-size: 1rem;
    color: var(--grayshade1-color);
}

/* ..............................................
page 2: Award.................................. */
.award-section {
    position: relative;
}

.award-content {
    background-color: rgba(251, 244, 239, 1);
    position: relative;
    z-index: 1;
    padding-left: 100px;
}

.award-img {
    max-width: 100%;
    position: absolute;
    right: 40%;
    top: 50%;
    transform: translate(50%, -50%);
    height: auto;
    z-index: 2;
}

.award-content p {
    text-align: justify;
}

@media (max-width: 992px) {
    .award-img {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-bottom: 20px;
        width: 100%;
    }

    .award-content {
        padding-left: 20px;
    }
}

/* ..............................................
page 3: Blogs.................................. */
.nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-tabs .nav-item {
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: 1px solid var(--grayshade1-color);
    color: var(--grayshade1-color);
    font-weight: 600;
    padding: 0 15px;
    border-radius: 40px !important;
    transition: all 0.3s ease;
    margin-right: 0;
    text-decoration: none;
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(60, 9, 108, 0.1);
    color: var(--purpul01-color);
    border: 1px solid var(--purpul01-color);
}

.nav-tabs .nav-link.active {
    background-color: var(--purpul01-color);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-tabs {
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-tabs .nav-link {
        padding: 4px 8px;
        font-size: 13px;
    }

    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
}

.blog-detail-section .badge.bg-purple {
    background-color: var(--purpul01-color);
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
}

.blog-detail-section .sticky-top h4 {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 20px;
}

.blog-detail-section .sticky-top .card img {
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.card.blog-card img,
.card img {
    border-radius: 8px;
}

.blog-detail-section .card-title {
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

/* ...................................
4.BUILD YOUR DREAM WITH use.......... */

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    margin-bottom: 12px;
}

.benefit-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 14px;
    color: var(--grayshade1-color);
    line-height: 1.6;
    margin: 0;
}

.openings-section .job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 10px;
}

.job-meta-item i {
    color: var(--purpul01-color);
    margin-right: 6px;
    margin-bottom: 10px;
}

.form-label {
    font-size: 16px;
}

.job-detail {
    font-size: 14px;
    color: var(--grayshade1-color);
    line-height: 0.8;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-pill {
    border: 1px solid var(--grayshade1-color);
    color: var(--grayshade1-color);
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

.application-form {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0 0.9) !important;
}

.application-form .form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.application-form .form-subtitle {
    font-size: 15px;
    color: var(--grayshade1-color);
    margin-bottom: 20px;
}

.application-form .form-label {
    font-weight: 600;
    color: var(--heading-color);
}

.application-form .form-control,
.application-form .form-select,
.application-form textarea {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 14px;
    width: 100%;
}

.application-form .mb-3 input[type="text"] {
    width: 48%;
    display: inline-block;
    margin-right: 4%;
}

.application-form .mb-3 input[type="file"] {
    width: 48%;
    display: inline-block;
}

.application-form .mb-3 select.form-select {
    width: 100%;
}

@media (max-width: 991px) {
    .openings-section .col-lg-5,
    .openings-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .application-form .mb-3 input[type="text"],
    .application-form .mb-3 input[type="file"] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.application-form select.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff
        url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23606c76' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E")
        no-repeat right 10px center;
    background-size: 10px 6px;
    padding-right: 35px;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* ...................................
SOLUTION PAGE......................... */

.custom-services {
    padding: 60px 0;
}

.custom-service-icon img {
    max-width: 60px;
    margin-bottom: 20px;
}

.custom-service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.custom-service-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--grayshade1-color);
}

.accordion-item {
    border: 1px solid #ddd !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #f7f2ff;
    color: var(--grayshade1-color);
}

.accordion-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grayshade1-color);
}

.sticky-image {
    position: sticky;
    top: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.sticky-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
