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

--------------------------------------------------------------*/
/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/
/* Euclid Circular A */
@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;
}

/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
    --white-color: #fff;
    --heading-color: #131313;
    --body-color: #555;
    --primary-color: #011e5a;
    --secondary-color: #7f1c1c;
    --optional-color: #d3ae37;
    --light-color: #c8eafb;
    --grayshade1-color: #555555;
    --grayshade2-color: #888;
    --grayshade3-color: #aaa;
    --grayshade4-color: #eaeaea;
    --grayshade5-color: #f2f2f2;
    --heading-font: "Montserrat", sans-serif;
    --body-font: "Montserrat", 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: 56px;
}

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);
    }
}

/* Start Scroll Up */
.td_scrollup {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background-color: var(--primary-color);
    color: var(--secondary-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
----------------------------------------------------------------*/

.top-header {
    background-color: var(--primary-color);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1002;
}

.top-header a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.top-header a i {
    margin-right: 6px;
    font-size: 14px;
}

.main-header {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease, background-color 0.3s ease;
}

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

.college-logo {
    height: 80px;
    background: #fff;
    padding: 11px;
    border-radius: 0 0 20px 20px;
    margin-top: -25px;
    margin-bottom: -30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 15px !important;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    bottom: -10px;
}

.dropdown-menu {
    border: none;
    border-radius: 7px;
    box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 9px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 8px 20px;
    border-bottom: 1px solid var(--grayshade5-color);
    font-size: 16px;
}

.dropdown-item:hover {
    color: var(--optional-color);
}

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

.nav-item.dropdown .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.nav-item.dropdown .nav-link:hover i,
.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.enroll-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
}

.enroll-btn:hover {
    background-color: var(--optional-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: 6px;
    display: inline-block;
    margin: 8px auto;
    text-align: center;
    max-width: 150px;
}

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

@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;
    }

    .top-header-left {
        display: none;
    }

    .top-header-right {
        width: 100%;
        justify-content: center !important;
    }

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

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

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

    .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

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

@media (max-width: 767.98px) {
    .top-header a {
        font-size: 10px;
    }

    .top-header a i {
        margin-right: 4px;
        font-size: 12px;
    }

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

@media (max-width: 575.98px) {
    .top-header a span {
        display: none;
    }

    .top-header a i {
        margin-right: 0;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .main-header .navbar-nav {
        justify-content: start;
        padding: 10px 0;
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        border-bottom: 1px solid var(--optional-color);
    }

    .d-lg-flex .enroll-btn {
        display: inline-block !important;
    }

    #hamburgerBtn {
        display: block !important;
    }

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

    .top-header-left {
        display: none !important;
    }

    .top-header-right {
        width: 100%;
        justify-content: center !important;
        font-size: 12px;
    }

    .top-header-right a {
        font-size: 12px;
        margin: 0 8px;
    }

    .college-logo {
        height: 95px;
        padding: 18px;
        margin-top: -20px;
    }

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

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

    .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1024px) {
    .navbar-expand-lg .navbar-collapse {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .navbar-expand-lg .navbar-collapse.show {
        max-height: 500px;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column;
    }
}

/*
............................................
1...banner hero section.....................
............................................ */
.hero-section {
    position: relative;
    min-height: 620px;
    height: auto;
    overflow: hidden;
    padding: 80px 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    position: relative;
    height: 100%;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding-top: 50px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.text-content {
    max-width: 500px;
    color: white;
    transition: opacity 0.5s ease;
    margin-top: 80px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white !important;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    color: white !important;
}

.hero-description {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 600;
}

/* BUTTONS */
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none !important;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px !important;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--optional-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    color: #fff;
    border: 1px solid var(--white-color);
    background: transparent;
    font-weight: bold;
    border-radius: 8px !important;
    padding: 5px 10px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-outline:hover {
    border-color: var(--optional-color);
    color: var(--optional-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.admission-info {
    color: #fff;
    font-size: 16px;
}

.admission-info i {
    margin-right: 8px;
}

.carousel-indicators {
    z-index: 3;
    bottom: 20px;
}

.carousel-indicators button {
    width: 20px !important;
    height: 5px !important;
    border-radius: 60px !important;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--optional-color);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .text-content {
        margin-top: 80px;
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline {
        width: auto;
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .text-content {
        margin-top: 60px;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: auto;
        max-width: 260px;
        margin: 0;
    }
}

.text-content {
    max-width: 500px;
    color: white;
    transition: opacity 0.5s ease;
    margin-top: 80px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: white !important;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    color: white !important;
}

.hero-description {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 600;
}

/* BUTTONS */
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none !important;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px !important;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--optional-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    color: #fff;
    border: 1px solid var(--white-color);
    background: transparent;
    font-weight: bold;
    border-radius: 8px !important;
    padding: 5px 10px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-outline:hover {
    border-color: var(--optional-color);
    color: var(--optional-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    margin-bottom: 10px !important;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--optional-color);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .text-content {
        margin-top: 80px;
        max-width: 100%;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline {
        width: auto;
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .text-content {
        margin-top: 60px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: auto;
        max-width: 260px;
        margin: 0;
    }
}

/*
.............................................
2.Aboout section............................
................................................ */
.about-section {
    position: relative;
    overflow-x: hidden;
}

.about-section .container {
    background-color: rgba(244, 248, 255, 1);
    border-radius: 16px;
    padding: clamp(20px, 4vw, 60px);
    /* auto-adjust padding */
}

/* Headings */
.section-subtitle {
    color: var(--heading-color);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-subtitle span {
    color: var(--secondary-color);
}

.section-title {
    color: var(--heading-color);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    color: var(--heading-color);
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Button */
.default-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.default-btn:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.default-btn .arrow {
    margin-left: 10px;
    transition: all 0.3s;
}

.default-btn:hover .arrow {
    transform: translateX(5px) translateY(-5px);
}

/* Stats */
.stats-container {
    margin-top: 20px;
}

.stat-item {
    padding: 0 15px;
    position: relative;
    flex: 1 1 auto;
}

.stat-number {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
}

.stat-title {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.stats-container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.stats-container .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: var(--primary-color);
}

.image-container {
    position: relative;
    width: min(80vw, 350px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-circle {
    position: absolute;
    inset: 0;
    border: 2px dashed var(--optional-color);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.inner-circle {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--optional-color);
    z-index: 1;
}

.circle-image {
    position: absolute;
    bottom: -1%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: clamp(40vh, 80vh, 100vh);
    max-width: 180%;
    object-fit: contain;
    z-index: 2;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Behavior */
@media (max-width: 1199.98px) {
    .image-container {
        width: 300px;
    }

    .circle-image {
        height: clamp(35vh, 65vh, 80vh);
        max-width: 150%;
    }
}

@media (max-width: 991.98px) {
    .image-container {
        width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .circle-image {
        height: clamp(30vh, 30vh, 70vh);
    }
}

@media (max-width: 767.98px) {
    .image-container {
        width: 220px;
    }

    .circle-image {
        height: clamp(28vh, 45vh, 60vh);
        max-width: 120%;
        bottom: -45%;
    }
}

@media (max-width: 575.98px) {
    .image-container {
        width: 180px;
    }

    .circle-image {
        height: clamp(25vh, 35vh, 50vh);
        max-width: 180%;
        bottom: -1%;
    }

    .section-title,
    .section-description,
    .section-subtitle {
        text-align: center;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 575.98px) {
    .default-btn {
        justify-content: center;
        font-size: 14px;
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    .stats-container .stat-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .stats-container .stat-item:not(:last-child)::after {
        display: none;
    }
}

/*
.............................................
2.courses............................
................................................ */

.courses-section p {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 40px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.program-tabs {
    margin-bottom: 40px;
    border-bottom: none;
    justify-content: center;
}

.program-tabs .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--body-color);
    border: none;
    padding: 10px 25px;
    margin: 0 5px;
    background: transparent;
    text-decoration: none !important;
}

.program-tabs .nav-link:hover {
    color: var(--optional-color);
}

.program-tabs .nav-link.active {
    color: var(--secondary-color);
    background: transparent;
    border-bottom: 3px solid var(--secondary-color);
}

.course-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 380px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.course-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 30, 90, 1), transparent);
    padding: 30px;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0);
}

.course-card:hover .course-card-overlay {
    transform: translateY(10px);
}

.course-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.apply-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 5px 10px;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0);
    font-size: 14px;
}

.apply-btn:hover {
    background-color: var(--optional-color);
}

.course-card:hover {
    transform: translateY(5px);
    background-color: var(--optional-color);
}

@media (max-width: 1199.98px) {
    .course-card {
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .program-tabs .nav-link {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .course-title {
        font-size: 15px;
    }

    .course-card {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .course-card {
        height: 280px;
        margin-bottom: 20px;
    }

    .course-card-overlay {
        padding: 20px;
    }

    .courses-section p {
        color: var(--heading-color);
        font-weight: 500;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .program-tabs .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .course-card {
        height: 240px;
    }

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

    .courses-section p {
        color: var(--heading-color);
        font-weight: 500;
        font-size: 14px;
    }
}

/*
.............................................
3.why choose us ............................
................................................ */
.section-left {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.section-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-right {
    padding: 80px;
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.section-description {
    font-size: 16px;
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--optional-color);
}

.feature-content p {
    margin: 0;
    text-align: left;
    padding-left: 0;
    font-size: 14px;
}

@media (max-width: 1199.98px) {
    .section-right {
        padding: 60px;
    }
}

@media (max-width: 991.98px) {
    .section-right {
        padding: 50px;
    }

    .feature-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section .row {
        flex-direction: column;
    }

    .section-left {
        height: 300px;
    }

    .section-right {
        padding: 40px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .section-right {
        padding: 30px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }
}

/*
.............................................
4.notice ............................
................................................ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all-btn {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--secondary-color);
    padding: 5px 10px;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.3s;
    font-size: 12px;
    height: 30px;
}

.view-all-btn:hover {
    color: var(--optional-color);
    border: 1px solid var(--optional-color);
}

.event-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    height: 400px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 30, 90, 1), rgba(0, 0, 0, 0));
    padding: 20px;
    color: white;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white-color);
}

.event-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.event-read-more {
    color: var(--optional-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    transition: all 0.3s;
}

.event-read-more:hover {
    text-decoration: underline;
}

.event-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.event-read-more:hover i {
    transform: translateX(3px);
}

.notice-container {
    background-color: var(--grayshade5-color);
    border-radius: 8px;
    padding: 25px;
    height: fit-content;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
}

.notice-board-tabs {
    border-bottom: none;
    margin-bottom: 20px;
}

.notice-board-tabs .nav-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-color);
    border: 1px solid var(--grayshade2-color);
    border-radius: 8px;
    margin-right: 5px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    color: var(--heading-color);
}

.notice-board-tabs .nav-link:hover {
    border: 1px solid var(--optional-color);
    color: var(--optional-color);
}

.notice-board-tabs .nav-link.active {
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 8px;
    border: none;
}

.notice-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid var(--grayshade3-color);
}

.notice-item-title {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.notice-item-title i {
    margin-right: 8px;
    color: var(--heading-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.notice-item-text {
    flex: 1;
}

.notice-item-date {
    font-size: 14px;
    color: var(--grayshade3-color);
    font-weight: 600;
    margin-left: 1.8rem;
}

@media (max-width: 1199.98px) {
    .event-card {
        height: 100%px;
    }
}

@media (max-width: 991.98px) {
    .events-news-section {
        padding: 60px 0;
    }

    .event-card {
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    .events-news-section {
        padding: 50px 0;
    }

    .event-card {
        height: 100%;
        margin-bottom: 20px;
    }

    .notice-container {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .events-news-section {
        padding: 40px 0;
    }

    .event-card {
        height: 100%;
    }

    .notice-title {
        font-size: 1.3rem;
    }
}

/*
.............................................
5.amenities ............................
................................................ */

.amenities-section {
    background-image: url("/assets/img/background_img.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    max-height: fit-content;
}

.amenities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 30, 90, 0.5);
    z-index: 0;
}

.amenities-content {
    position: relative;
    z-index: 1;
}

.amenity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amenity-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.amenity-img1 {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}

.amenity-body {
    padding: 20px;
    background-color: var(--primary-color);
    border-radius: 0 0 10px 10px;
}

.amenity-text {
    color: var(--grayshade4-color);
    font-size: 14px;
}

@media (max-width: 768px) {
    .amenity-card {
        margin-bottom: 20px;
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.bg-dark-blue {
    background-color: #011e5a;
}

.card-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--optional-color);
}

.amenity-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--optional-color);
}

.object-fit-cover {
    object-fit: cover;
}

img.img-fluid {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .row.mb-4.no-gutters > div {
        min-height: 250px;
    }

    .amenity-title {
        font-size: 1rem;
    }

    .card-number {
        font-size: 1.1rem;
    }
}

/*
.............................................
6.testimonials ............................
................................................ */

.main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 60vh;
    object-fit: cover;
}

.testimonial-card {
    border-radius: 12px;
    border: none;
    transition: all 0.5s ease;
    overflow: hidden;
    background: var(--grayshade5-color);
    width: 100%;
    min-height: 300px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.top-quote {
    font-size: 2rem;
    color: var(--secondary-color);
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
}

.bottom-quote {
    font-size: 2rem;
    color: var(--secondary-color);
    align-self: flex-end;
    opacity: 0.3;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--heading-color);
    margin: 2rem 0 1rem 0;
    position: relative;
    text-align: left;
}

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

.student-text {
    display: flex;
    flex-direction: column;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    object-fit: cover;
}

.student-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.student-intake {
    color: var(--heading-color);
    font-size: 12px;
}

.testimonial-col {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.testimonial-col.d-none {
    display: none !important;
}

.arrow1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 30%;
    z-index: 20;
    color: var(--white-color) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.arrow1:hover {
    background: var(--optional-color);
    transform: translateY(-50%) scale(1.05);
}

.left-arrow1 {
    left: -20px !important;
}

.right-arrow1 {
    right: 40px;
}

.testimonial-row {
    position: relative;
    margin-top: 100px;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s ease;
}

@media (min-width: 992px) {
    .testimonial-col {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 0 15px;
    }

    .testimonial-row {
        margin-left: -50px;
    }

    .testimonial-col .testimonial-card {
        transform: translateX(-50px);
        z-index: 10;
    }

    .testimonial-col:first-child .testimonial-card {
        transform: translateX(-50px) translateY(-15px);
        z-index: 11;
    }

    .testimonial-col:last-child .testimonial-card {
        transform: translateX(-50px) translateY(15px);
        z-index: 9;
    }

    .left-arrow1 {
        left: -10px !important;
    }
}

/* Mobile styles */
@media (max-width: 992px) {
    .testimonial-col .testimonial-card {
        transform: none;
    }

    .testimonial-col:first-child .testimonial-card,
    .testimonial-col:last-child .testimonial-card {
        transform: none;
    }

    .arrow1 {
        display: none !important;
    }

    .testimonial-row {
        margin-top: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-col {
        scroll-snap-align: start;
        flex: 0 0 85%;
        max-width: 85%;
        margin-right: 15px;
    }

    .testimonial-col:last-child {
        margin-right: 0;
    }

    .main-image {
        min-height: 45vh;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-col {
        flex: 0 0 90%;
        max-width: 90%;
    }

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

.testimonial-row::-webkit-scrollbar {
    display: none;
}

.testimonial-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation classes */
.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-out-right {
    animation: slideOutRight 0.6s ease forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

/*
.............................................
7.footer ............................
................................................ */
.footer {
    background-color: var(--secondary-color);
    font-family: var(--heading-font);
}

.affiliated-title {
    font-size: 14px;
    font-weight: bold;
    color: var(--optional-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    color: var(--white-color);
    font-size: 18px;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--optional-color);
}

.affiliated-title,
.college-logo,
.connect-title,
.social-icons {
    text-align: left;
}

.connect-title {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 15px;
    color: var(--white-color);
}

.footer-column-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-link {
    display: block;
    color: var(--white-color);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--optional-color);
}

.footer-link > i {
    margin-right: 5px;
    color: var(--optional-color);
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.contact-info {
    color: var(--white-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--optional-color);
    padding: 10px 0;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.developer {
    font-size: 12px;
    color: white;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-link {
        font-size: 10px;
    }

    .copyright,
    .developer {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 25px;
    }

    .connect-title {
        margin-top: 30px;
    }
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .footer-column-title,
    .connect-title,
    .contact-title {
        font-size: 16px;
    }

    .footer-link,
    .contact-info {
        font-size: 13px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ....................................
page 1.courses......................
..................................... */
.banner-container {
    position: relative;
    background-color: var(--primary-color);
    padding: 30px 0;
    width: 100%;
    height: 350px;
    overflow: hidden;
    z-index: 0;
}

.logo-lines-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
}

.logo-lines {
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    gap: 9px;
    padding: 0;
    margin-left: auto;
}

.logo-lines span {
    display: block;
    width: 2px;
    background-color: #fff;
    border-radius: 2px;
}

.logo-lines span:nth-child(1) {
    height: 200px;
}

.logo-lines span:nth-child(2) {
    height: 180px;
}

.logo-lines span:nth-child(3) {
    height: 160px;
    background-color: var(--optional-color);
}

.logo-lines span:nth-child(4) {
    height: 140px;
}

.title-section {
    text-align: left;
    margin-top: 120px;
}

.title-section h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: var(--white-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 8px 0 0 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 5px;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.breadcrumb-item.active {
    color: var(--optional-color);
    font-weight: bold;
    font-size: 16px;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.overlap-image {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 280px;
    height: auto;
    z-index: 10;
}

.side-image {
    position: absolute;
    bottom: 90px;
    right: 280px;
    width: 130px;
    height: auto;
    z-index: 9;
}

.circle-container {
    position: absolute;
    left: 10px;
    bottom: -40px;
    z-index: -1;
}

.outer-shape {
    width: 80px;
    height: 80px;
    border: 2px solid var(--optional-color);
    border-radius: 50%;
    position: relative;
}

.inner-shape {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
    .banner-container {
        height: 260px;
    }

    .overlap-image {
        width: 220px;
    }

    .side-image {
        right: 240px;
        width: 110px;
    }

    .logo-lines {
        margin-left: 20px;
        gap: 6px;
    }
}

/* Medium devices <= 992px */
@media (max-width: 992px) {
    .title-section h1 {
        font-size: 26px;
    }

    .overlap-image {
        width: 180px;
    }

    .side-image {
        right: 200px;
        width: 90px;
    }

    .logo-lines span:nth-child(1) {
        height: 150px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 135px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 120px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 105px !important;
    }
}

/* Small devices <= 768px */
@media (max-width: 768px) {
    .banner-container {
        height: 250px;
    }

    .title-section h1 {
        font-size: 26px;
        margin-top: -110px;
        text-align: center;
    }

    .title-section .breadcrumb {
        justify-content: center;
    }

    .overlap-image {
        width: 200px;
        top: 0;
    }

    .side-image {
        display: none;
    }

    .logo-lines {
        margin-left: 25px;
        gap: 6px;
    }

    .logo-lines span:nth-child(1) {
        height: 120px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 110px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 100px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 90px !important;
    }
}

@media (max-width: 576px) {
    .logo-lines {
        display: none;
    }

    .overlap-image,
    .side-image {
        display: none;
    }

    .title-section {
        text-align: left;
        padding-left: 15px;
        margin-top: 210px;
    }

    .banner-container {
        height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 820px) {
    .banner-container {
        height: 260px;
    }

    .title-section h1 {
        font-size: 26px;
        text-align: center;
        margin-top: -20px;
    }

    .title-section .breadcrumb {
        justify-content: center;
    }

    .overlap-image {
        width: 200px;
    }

    .logo-lines {
        margin-left: 40px;
    }

    .logo-lines span:nth-child(1) {
        height: 120px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 110px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 100px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 90px !important;
    }
}

@media (min-width: 821px) and (max-width: 1024px) {
    .banner-container {
        height: 270px;
    }

    .title-section h1 {
        font-size: 28px;
        text-align: center;
        margin-top: -40px;
    }

    .overlap-image {
        width: 220px;
    }

    .side-image {
        right: 200px;
        width: 110px;
    }

    .logo-lines span:nth-child(1) {
        height: 140px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 130px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 120px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 110px !important;
    }
}

@media (min-width: 901px) and (max-width: 960px) {
    .banner-container {
        height: 280px;
    }

    .title-section h1 {
        font-size: 26px;
        text-align: left;
        margin-top: -10px;
    }

    .title-section .breadcrumb {
        justify-content: left;
    }

    .overlap-image {
        width: 230px;
    }

    .side-image {
        right: 220px;
        width: 100px;
    }

    .logo-lines {
        margin-left: 100px;
    }

    .logo-lines span:nth-child(1) {
        height: 150px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 135px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 120px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 105px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .banner-container {
        height: 300px;
    }

    .overlap-image {
        width: 250px;
    }

    .side-image {
        right: 260px;
        width: 120px;
    }

    .logo-lines span:nth-child(1) {
        height: 150px !important;
    }

    .logo-lines span:nth-child(2) {
        height: 130px !important;
    }

    .logo-lines span:nth-child(3) {
        height: 110px !important;
    }

    .logo-lines span:nth-child(4) {
        height: 90px !important;
    }
}

@media (width: 1024px) and (height: 600px) {
    .banner-container {
        height: 280px;
    }

    .title-section h1 {
        font-size: 28px;
        margin-top: 1px;
        text-align: left;
    }

    .logo-lines {
        margin-left: 20px;
    }

    .overlap-image {
        width: 190px;
    }

    .side-image {
        right: 200px;
        width: 85px;
    }
}

/* Nest Hub Max (1280x800) */
@media (width: 1280px) and (height: 800px) {
    .banner-container {
        height: 300px;
    }

    .logo-lines {
        margin-left: 30px;
    }

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

    .overlap-image {
        width: 210px;
    }

    .side-image {
        right: 220px;
        width: 95px;
    }
}

/* ....................................
page 2.courses......................
..................................... */
.course-details-container {
    position: relative;
    margin-top: -30px;
    z-index: 2;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px 10px 25px 25px;
}

.course-info-box {
    background-color: var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

.course-detail-item {
    margin-bottom: 8px;
    font-size: 16px;
}

.detail-label {
    font-weight: 600;
    color: var(--optional-color);
    width: 120px;
    flex-shrink: 0;
}

.detail-value {
    color: var(--white-color);
}

.object-fit-cover {
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .course-details-container {
        margin-top: 20px;
    }

    .detail-label {
        width: 100px;
    }

    .course-detail-item {
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* .................details section */

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar .nav-link {
    color: var(--secondary-color);
    padding: 10px 25px;
    border-bottom: 1px solid var(--grayshade4-color);
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar .nav-link:hover {
    color: var(--optional-color);
}

.content-area {
    padding: 30px;
    font-family: var(--heading-font);
}

.nav-title {
    color: #7f1c1c !important;
    font-size: 20px !important;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.list-group-flush .list-group-item {
    position: relative;
    padding-left: 20px;
    border: none;
    padding: 8px 0;
}

.list-group-flush .list-group-item:before {
    content: "•";
    color: var(--optional-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.curriculum-nav-tabs .nav-link {
    color: var(--heading-color);
    border: 1px solid var(--grayshade3-color);
    margin: 5px;
    margin-top: -10px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
}

.curriculum-nav-tabs .nav-link:hover {
    color: var(--optional-color);
    border: 1px solid var(--optional-color);
}

.curriculum-nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--secondary-color);
    font-weight: 600;
    border: none;
}

.tab-content {
    padding: 20px 0;
    margin-top: -10px;
}

@media (min-width: 1200px) {
    .sidebar {
        width: 100%;
    }

    .nav-title {
        font-size: 20px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .content-area {
        padding: 25px;
        display: none !important;
    }

    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .nav-title {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .sidebar {
        position: static;
        height: auto;
        margin-bottom: 20px;
    }

    .content-area {
        padding: 20px;
    }

    .row.mt-3 .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .sidebar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 10px 0;
    }

    .sidebar .nav-link {
        border-bottom: none;
        margin: 5px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .content-area {
        padding: 15px 10px;
    }

    .row.mt-3 .col-md-4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .sidebar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px 0;
    }

    .sidebar .nav-link {
        border-bottom: none;
        margin: 3px;
        font-size: 12px;
        padding: 6px 8px;
        text-align: center;
    }

    .content-area {
        padding: 10px 5px;
    }

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

    .row.mt-3 .col-md-4 {
        margin-bottom: 10px;
    }

    table.table {
        font-size: 12px;
    }
}

/* ..............................
2.About College Page..........
.............................. */

.about-left .about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-content p {
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 992px) {
    .about-left {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .about-content p {
        font-size: 15px;
    }
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 991.98px) {
    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .stat-item {
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-title {
        font-size: 1rem;
    }
}

.mv-item {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 10px;
    text-align: left;
}

.mv-title {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    text-align: left;
}

.mv-content {
    color: var(--white-color);
    line-height: 1.8;
    font-size: 14px;
    text-align: left;
}

@media (max-width: 991.98px) {
    .mv-item {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .mv-icon {
        font-size: 2rem;
    }

    .mv-title {
        font-size: 1.3rem;
    }

    .mv-content {
        font-size: 1rem;
    }
}

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

    .mv-title {
        font-size: 1.2rem;
    }
}

/* ..............................
2.Principal Message Page..........
.............................. */

.principal-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.message-content {
    font-size: 16px;
    color: var(--heading-color);
    text-align: justify;
    letter-spacing: normal;
}

@media (max-width: 992px) {
    .principal-img-container {
        text-align: center;
    }

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

.section-title .line1 {
    color: var(--heading-color);
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 28px;
}

.section-title .line2 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 28px;
}

@media (max-width: 576px) {
    .message-content {
        font-size: 14px;
    }
}

/* .............................
3.what sets us part..........
............................ */

.info-box {
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: 0 10px 10px 0;
}

.custom-img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

@media (max-width: 767.98px) {
    .info-box {
        border-radius: 0 !important;
    }

    .custom-img {
        border-radius: 0 !important;
        max-height: none;
    }
}

/* .............................
4.News And Events..........
............................ */
.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.news-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 30, 90, 1), transparent);
    padding: 30px;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(0);
}

.news-card:hover .news-card-overlay {
    transform: translateY(10px);
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.news-card-overlay h5.news-title {
    margin-bottom: 4px;
}

.news-card-overlay .news-date {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: block;
}

.news-card-overlay .event-read-more {
    margin-top: 5px;
    display: inline-block;
}

/* --- News Section --- */

.news-container .section-title {
    margin-bottom: 5px;
}

.news-content {
    color: var(--heading-color);
    text-align: justify;
    font-size: 14px;
}

.news-container .news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.news-image img {
    width: 100%;
    max-height: 60vh;
    border-radius: 8px;
    margin-bottom: 20px;
}

.events-sidebar .events-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.events-sidebar {
    border: 1px solid var(--grayshade4-color);
    padding: 20px;
    border-radius: 8px;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.event-img img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.event-title {
    font-size: 1rem;
    color: var(--heading-color);
}

.event-date {
    font-size: 0.875rem;
    color: var(--grayshade2-color);
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .event-item {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-img img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .event-details h3 {
        font-size: 1.1rem;
    }

    .read-more {
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .events-sidebar {
        font-size: 1.3rem;
    }
}

/*
...................................
5.Campus Life.....................
.................................. */
.enrollment-section {
    background: url("/assets/img/background_img.jpg") no-repeat center
        center/cover;
    padding: 100px 0;
    position: relative;
}

.enrollment-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 30, 90, 0.6);
    z-index: 1;
}

.enrollment-section .container {
    position: relative;
    z-index: 2;
}

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

.card-img {
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.campus-card .card {
    border-radius: 10px !important;
    transition: transform 0.3s ease;
    height: 320px;
}

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

.card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(1, 30, 90, 0.8),
        transparent
    ) !important;
    padding: 1rem;
    text-align: left;
}

.btn-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: var(--secondary-color);
    font-size: 2.2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.btn-arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

#dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
}

#dots .dot.active {
    background-color: #7f1c1c;
}

.campus-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.campus-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    margin: 0 -10px;
}

.campus-carousel::-webkit-scrollbar {
    display: none;
}

.campus-card {
    flex: 0 0 auto;
    width: calc(50% - 20px);
    margin: 0 10px;
}

@media (max-width: 991px) {
    .campus-card {
        width: calc(100% - 20px);
    }

    .campus-section p.mx-auto {
        width: 80% !important;
    }
}

@media (max-width: 767px) {
    .btn-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 5px;
    }

    .campus-carousel-container {
        padding: 0 30px;
    }
}

.student-gallery .gallery-img img {
    object-fit: cover;
    height: 220px;
    border-radius: 10px;
}

/*
...................................
5.Student Amenities.....................
.................................. */

.infrastructure-section p {
    font-size: 16px;
    color: var(--heading-color);
}

.list-unstyled li {
    display: flex;
    align-items: flex-start;
}

.list-unstyled li i {
    margin-right: 8px;
    flex-shrink: 0;
}

.infrastructure-section img {
    object-fit: cover;
    border-radius: 8px;
}

.list-unstyled li {
    color: var(--heading-color);
}

@media (max-width: 767px) {
    .infrastructure-section h2 {
        padding-top: 100px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px !important;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

.amenities h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: var(--primary-color);
    text-align: left;
}

.amenities h3 .title-number {
    display: inline-block;
    width: 30px;
    text-align: left;
    margin-right: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.amenities ul.amenities-list {
    list-style-type: disc;
    padding-left: 40px;
    color: var(--heading-color);
    margin-top: 0.5rem;
}

.amenities ul.amenities-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
}

.img-col img {
    width: 100%;
    height: 35vh;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.img-col img:hover {
    transform: scale(1.05);
}

.row:nth-child(2) .img-col img {
    height: 40vh;
}

.amenities-list {
    padding-left: 1.2rem;
    list-style-type: disc;
}

.title-number {
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .img-col img {
        height: 30vh;
    }

    .row:nth-child(2) .img-col img {
        height: 35vh;
    }
}

/* ----------------------------
.6.notice board page..........
............................... */

.notice-board {
    padding: 25px;
    margin: 0 auto;
}

.border-bottom {
    border-color: var(--grayshade4-color) !important;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.btn-outline-dark {
    background-color: var(--optional-color);
    border: none !important;
    color: var(--white-color);
    padding: 5px 12px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-outline-dark:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ..........................
7.Conatct Us page...........
........................... */

.contact-form {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-label,
.contact-form .form-label i {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid rgba(221, 221, 221, 1);
    padding: 10px 12px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

.custom-modal {
    max-width: 400px;
    width: 90%;
}

.custom-modal .modal-body {
    height: 450px;
    padding: 0;
}

@media (max-width: 768px) {
    .custom-modal {
        max-width: 95%;
    }

    .custom-modal .modal-body {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .custom-modal .modal-body {
        height: 250px;
    }
}

.modal-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
