@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}



:root {
    --primary-color: #1E1E1E;
    --secondary-color: #0D0D0D;
    --font-color: #0A0C00;
    --white-color: #fff;
    --sub-color: #c4a04c;
}

@font-face {
    font-family: "Times Now";
    src: url(../fonts/times_now_roman.ttf);
}

body {
    /* font-family: "DM Sans", serif; */
    font-family: "Poppins", serif !important;
}

a {
    text-decoration: none;
}

p{
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
}

h1 {
    font-family: "Times Now";
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: var(--font-color);
}

h2 {
    font-family: "Times Now";
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    /* font-size: 60px;
    font-weight: 600;
    line-height: 65px; */
}

h3 {
    font-size: 54px;
    font-weight: 600;
    line-height: 65px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 65px;
}

li {
    list-style-type: none;
}


/* Buttons */

.primary-btn {
    padding: 8px 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.primary-btn,
.secondary-btn {
    min-width: 240px;
    text-align: center;
}

.secondary-btn {
    padding: 8px 50px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn:hover span,
.primary-btn:hover span {
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transform: rotate(45deg);
}

.secondary-btn img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(19%) saturate(2852%) hue-rotate(38deg) brightness(109%) contrast(76%);
}

/* Header  */

header {
    min-height: 120px;
}

header .primary-btn {
    min-width: 216px;
    max-width: 216px;
    padding: 8px 25px;
}

.navbar {
    padding: 20px 0;
    background-color: #fff;
}

.navbar.fixed {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.navbar .navbar-brand img{
    max-width: 230px;
    width: 100%;
}

.navbar-nav .nav-link {
    font-family: "DM Sans", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.44px;
    color: var(--font-color);
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Footer  */

footer {
    background-color: var(--primary-color);
    padding-top: 80px;
    padding-bottom: 30px;
    color: #B5B5B5;
}

footer h4 {
    color: #D9D9D9;
    text-transform: uppercase;
    padding-bottom: 25px;
}

footer .f-logo img {
    max-width: 445px;
    width: 100%;
}

.footer-menu li a{
    font-size: 18px;
    font-weight: 400;
    line-height: 45px;
    color: #B5B5B5;
}

.address-col a {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    color: #B5B5B5;
    text-decoration: underline;
    word-wrap: break-word;
}

.address-col p {
    font-size: 18px;
    font-weight: 400;
    line-height: 45px;
}

.logo-col p {
    padding-right: 100px;
}

hr.divider {
    height: 1px;
    background-color: var(--white-color);
    width: 100%;
    opacity: 1 !important;
    color: var(--white-color) !important;
    margin: 0 !important;
}

.footer-row {
    padding-bottom: 50px;
}

.copy-right-col p{
    font-size: 20px;
    font-weight: 400;
    line-height: 65px;
}

.copy-right-col ul li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.copy-right-col ul li {
    padding-right: 18px;
}

/* Banner  */

.banner-col {
    padding-left: 30px;
    padding-right: 10px;
}

.banner-col img {
    width: 100%;
    height: 530px;
    border-radius: 15px;
    object-fit: cover;
}

.banner-sec {
    padding-bottom: 70px;
}

.dark-sec {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding-top: 70px;
    padding-bottom: 40px;
    border-radius: 10px;

    .main-txt {
        padding-left: 35px;
    }
}

.dark-sec .main-txt p{
    font-size: 22px;
    font-weight: 600;
    line-height: 45px;
}

.dark-sec .cust-box {
    padding: 35px 70px;
    margin-bottom: 5px;
    border-radius: 15px;
}

.dark-sec .cust-box:hover {
    background-color: var(--secondary-color);
    transition: all .6s cubic-bezier(.25,1,.5,1);
}

.dark-sec .cust-box p{
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
}

/* Services */

.service-sec {
    padding-top: 80px;
    padding-bottom: 100px;
}

.service-sec .service-box {
    padding: 80px 45px 80px 45px;
    background: transparent;
    border-radius: 15px;
    border: 1px solid #D4D4D4;
    margin-bottom: 30px;
    position: relative;
    transition: all .6s cubic-bezier(.25,1,.5,1);
    min-height: 605px;
}

.service-sec .service-box:hover {
    background-color: var(--primary-color);
    border-color: none;
    color: var(--white-color);
}

.service-sec .service-box .icon-col{
    width: 120px;
    height: 120px;
    background-color: #F1F1F1;
    border-radius: 100%;
    margin: auto;
    position: relative;
    z-index: 9;
}

.service-sec .service-box h4 ,
.service-sec .service-box p {
    position: relative;
    z-index: 9;
}

.service-sec .service-box:hover .icon-col{
    background-color: var(--white-color);
}

.service-sec .service-box .icon-col img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.service-sec .service-row {
    padding-top: 70px;
}

.service-sec .service-box:hover::after {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 50%;
    height: 100%;
    border-top: 275px solid #50452c;
    border-left: 230px solid transparent;
    border-radius: 0px 12px 0px 0;
}

.service-sec .service-box:hover::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 20%;
    height: 90%;
    border-top: 120px solid #c4a04c;
    border-left: 100px solid transparent;
    z-index: 9;
    border-radius: 0px 12px 0px 0;
}

/* Projects  */

.project-sec .proj-box {
    padding: 40px 50px;
    position: relative;
    z-index: 1;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 15px;
    margin-bottom: 60px;
}

.project-sec {
    border-radius: 0 0 35px 35px;
}

.project-sec .header-col {
    padding-bottom: 80px;
}

.project-sec .proj-box:before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 20%;
    height: 90%;
    border-top: 120px solid #c4a04c;
    border-left: 100px solid transparent;
    z-index: 9;
    border-radius: 0px 12px 0px 0;
}

.project-sec .proj-box:hover::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 50%;
    height: 90%;
    border-bottom: 330px solid #C4A04C80;
    border-right: 390px solid transparent;
    border-radius: 0px 0px 0px 12px;
    z-index: 0;
}

.project-sec .proj-box .bg-image {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 15px;
}

.project-sec .proj-box .inner-txt {
    position: relative;
    z-index: 9;
}

.project-sec .proj-box .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.project-sec .proj-box .hover-text {
    opacity: 0;
    transition: all 1.1s ease;
    transform: translateX(-20px) scale(0.8);
    transform-origin: bottom;
    max-height: 0;
    overflow: hidden;
}

.project-sec .proj-box:hover .hover-text {
    opacity: 1;
    transform: none;
    max-height: 300px;
}

.project-sec .proj-box .bg-shadow{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
    z-index: 0;
}

.project-sec .proj-box h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 65px;
    transition: transform 0.6s cubic-bezier(0.12, 0, 0.39, 0);
}

.project-sec .proj-box .hover-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
    padding: 15px 0;
}

.project-sec .proj-box p.sub-head {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
}

.project-sec .proj-box a {
    font-size: 19px;
    font-weight: 500;
    line-height: 30px;
    text-decoration: underline;
    color: var(--white-color);
}

/* Slider Sec  */

.slider-sec {
    padding: 100px 0;
}

.slider-sec .testi-slider .slider-single{
    /* background: linear-gradient(270deg, rgba(241, 241, 241, 0) 0%, #F1F1F1 100%); */
    /* opacity: 40%; */
    position: relative;
    padding: 0 50px;
    background-color: var(--white-color);
}

.slider-sec .testi-slider .slider-single.slick-active.slick-center{
    background: transparent;
    opacity: 1;
}

.slider-sec .auth-comment {
    font-size: 19px;
    font-weight: 500;
    line-height: 34px;
    color: #636363;
    padding-top: 20px;
    padding-bottom: 60px;
}

.slider-sec .q-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.slider-sec .slider-single .about-author h4 {
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    color: var(--primary-color);
}

.slider-sec .slider-single .about-author p {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-color);
    padding-top: 5px;
}

.slider-sec .slider-single .about-author .auth-detail {
    padding-left: 25px;
}

.slider-sec .slider-single .auth-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100px;
}

.slider-sec .slick-arrow{
    font-size: 0;
    border: none;
    background-color: none;
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: 9;
}

.slider-sec .slick-arrow.slick-next{
    right: 0;
    background: url('../images/arrow-slider.svg') no-repeat;
}

.slider-sec .slick-arrow.slick-prev{
    right: 50px;
    background: url('../images/arrow-disabled.svg') no-repeat;
}

/* About  */

.about-banner {
    padding: 60px 0;
}

.about-banner .main-head p,
.about-banner .main-head a{
    font-size: 19px;
    font-weight: 500;
    line-height: 30px;
    color: var(--secondary-color);
    padding-top: 10px;
}

.img-banner img{
    width: 100%;
    min-height: 730px;
    object-fit: cover;
}

.content-sec {
    padding: 110px 0 50px 0;
}

.content-sec p {
    padding-top: 20px;
    padding-bottom: 50px;
}

.content-sec .secondary-btn {
    background-color: #E1E1E1;
}

.container {
    width: 1110px;
    max-width: 1110px;
    margin: auto;
}

.meet-sec {
    padding: 90px 0;
}

.meet-sec .meet-boxes {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 35px 45px;
    padding-top: 90px;
}

.meet-sec .meet-boxes .emp-single {
    border: 0.5px solid #000000;
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 50px 40px;
}

.meet-sec .meet-boxes .emp-single:hover {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    transition: all .6s cubic-bezier(.25,1,.5,1);
}

.meet-sec .meet-boxes .emp-single h5 {
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    color: var(--white-color);
    padding-bottom: 8px;
}

.meet-sec .meet-boxes .emp-single:hover h5 {
    color: #000000;
}

.meet-sec .meet-boxes .emp-single p {
    font-size: 22px;
    font-weight: 400;
    line-height: 20px;
    color: #A4A4A4;
    padding: 7px 0;
}

.meet-sec .meet-boxes .emp-single:hover p {
    color: #525252;
}

.form-sec .form-layout-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
    left: -50px;
    top: -160px;
    min-height: 970px;
}

.form-sec {
    background-color: #F4F4F4;
    margin-top: 200px;
    padding-top: 50px;
     /*padding-bottom: 160px; */
}

.form-sec form .form-control {
    border: none;
    background: transparent;
    border-bottom: 1.5px solid #000000;
    border-radius: 0;
    padding: 20px 0;
    margin-bottom: 20px;
}

.form-sec form textarea.form-control {
    min-height: 180px;
}

.form-sec .form-col {
    padding-bottom: 160px;
}

.form-sec form .form-control::placeholder {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: #000000;
}

.form-sec form .primary-btn {
    margin-top: 50px;
}

.form-sec p {
    padding-top: 20px;
    padding-bottom: 70px;
}

.service-sec-2 .service-box:hover::before,
.service-sec-2 .service-box:hover::after {
    content: none;
}

.service-sec-2 .service-box:hover .icon-col {
    background-color: #C4A04C;
}

.service-sec-2 .service-box:hover .icon-col img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(72deg) brightness(103%) contrast(101%);
}

.content-sec h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 70px;
    color: var(--primary-color);
    /* padding-top: 35px; */
}

.content-sec .img-row img{
    min-height: 595px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.project-sec .proj-box {
    color: var(--white-color);
}

.filter-col {
    border-top: 0.5px solid #000000;
    border-bottom: 0.5px solid #000000;
    padding: 25px 0;
    margin-top: 65px;
}

.filter-col .filter-drop .bdropdown-toggle {
    font-size: 22px;
    font-weight: 400;
    line-height: 20px;
    color: #0A0C00;
    position: relative;
    margin-left: 60px;
    padding-right: 60px;
}

.filter-col .filter-drop .bdropdown-toggle::after {
    position: absolute;
    content: '';
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto;
    background: url('../images/dropdown-arrow.svg') no-repeat ;
    width: 20px;
    height: 10px;
    z-index: 2;
}

.filter-col .filter-row .all-btn{
    font-size: 23px;
    font-weight: 500;
    line-height: 20px;
    color: #0A0C00;

    a{
        display: block;
        color: inherit;
        text-decoration: none;
    }
}

.project-sec-2 .proj-box .bg-shadow {
    border-radius: 15px;
}

.project-sec .proj-box a.box-btn:hover span img {
    transform: rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.proj-banner img{
    border-radius: 0 0px 35px 35px;
}

.content-sec h2 span {
    font-size: 23px;
    font-weight: 500;
    line-height: 20px;
}

.media-sec .media-single img {
    width: 100%;
    height: 595px;
    border-radius: 15px;
    object-fit: cover;
}

.map-sec iframe {
    width: 100%;
    height: 725px;
}

.contact-sec .address-box {
    background-color: #F1F1F1;
    border-radius: 15px;
    padding: 32px 32px 46px 32px;
    height: 100%;
    box-sizing: border-box;
}

.contact-sec .address-box h5 {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: var(--primary-color);
    padding-bottom: 20px;
    padding-top: 80px;
}

.contact-sec .address-box img {
    width: 63px;
    height: 63px;
    object-fit: contain;
}

.contact-sec .address-box p,
.contact-sec .address-box a{
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #3D3D3D;
}

.contact-sec {
    padding-top: 80px;
    padding-bottom: 50px;
}


/* .banner-slider .slick-arrow {
    font-size: 0;
    border: none;
    background-color: transparent;
    width: 32px;
    height: 32px;
    object-fit: contain;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 9;
    border-radius: 100%;
}

.banner-slider {
    position: relative;
}

.banner-slider .slick-arrow.slick-prev {
    background: url('../images/banner-arrow.png') no-repeat #fff;
    right : 60px;
    transform: rotate(180deg);
}

.banner-slider .slick-arrow.slick-next {
    background: url('../images/banner-arrow.png') no-repeat #fff ;
    right: 20px;
} */


/* Updated changes on HomePage */



/* .home-header {
    font-family: "Times Now";
    font-size: 48pt;
    line-height: 52pt;
} */

.home-header span,
.subHead-new span {
    color: var(--sub-color);
}

p.hom-para {
    padding-bottom: 25px;
    font-family: "Poppins", serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 28px !important;
}

.banner-row .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.banner-row .slick-dots button {
    display: none;
}

.banner-row .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 2px;
    cursor: pointer;
    background-color: var(--primary-color);
    border-radius: 100%;
}

.banner-row .slick-dots li.slick-active {
    width: 25px;
    border-radius: 20px;
}

/* .subHead-new {
    font-family: "Times Now";
    font-size: 48pt;
    line-height: 52pt;
} */

.service-row-new {
    padding-top: 70px;
}

.service-row-new .serv-single {
    background-color: #fcfbf7;
    /* padding: 30px 20px; */
    border-radius: 45px 15px 15px 45px;
    margin-bottom: 50px;
}

.service-row-new .serv-single .img-col {
    background-color: var(--secondary-color);
    min-width: 120px;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.service-row-new .serv-single .img-col img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.service-row-new .serv-single h4 {
    padding: 0px 10px;
    width: 100%;
    text-align: center;
    line-height: normal;
    font-size: 18px !important;
}

.client-slider .client-single {
    text-align: center;
}

.client-slider {
    padding: 50px 0;
    margin-top: 60px;
    background-color: #fcfbf7;
}

.category-sec .project-row  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 50px;
    border-radius: 15px;
}

.category-sec .project-row .cat-col {
    position: relative;
}

.category-sec .project-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 320px;
}

.category-sec .project-row h4 {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.category-sec .project-row .bg-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
    z-index: 0;
}

.category-sec .project-row .cat-col:nth-child(1) .inn-img img,
.category-sec .project-row .cat-col:nth-child(1) .bg-shadow{
    border-radius: 15px 0 0 0;
}

.category-sec .project-row .cat-col:nth-child(3) .inn-img img,
.category-sec .project-row .cat-col:nth-child(3) .bg-shadow{
    border-radius: 0 15px 0 0;
}

.category-sec .project-row .cat-col:nth-child(4) .inn-img img,
.category-sec .project-row .cat-col:nth-child(4) .bg-shadow{
    border-radius: 0 0 0 15px;
}

.category-sec .project-row .cat-col:nth-child(6) .inn-img img,
.category-sec .project-row .cat-col:nth-child(6) .bg-shadow{
    border-radius: 0 0 15px 0;
}

.service-block {
    display: block;
    color: inherit;
    text-decoration: none;
}

.no-projects-found {
    font-size: 23px;
    font-weight: 500;
    line-height: 20px;
    color: #0A0C00;
}

.team-sec {
    padding-top: 80px;
    padding-bottom: 100px;

    .team-item-box {
        min-height: 440px;
        padding: 50px 30px;
        background-color: #000;
        border-radius: 15px;
        border: 1px solid #D4D4D4;
        margin-bottom: 30px;
        position: relative;
        transition: all .6s cubic-bezier(.25,1,.5,1);
    }

    .team-item-box h4 {
        color: var(--white-color);
        transition: color 0.6s;
    }

    .team-item-box p {
        color: #A4A4A4;
        transition: color 0.6s;
    }

    .team-item-box:hover {
        background: transparent;
        border-color: #000;
    }

    .team-item-box:hover h4 {
        color: #000000;
    }

    .team-item-box:hover p {
        color: #525252;
    }
}

/* Vision & Mission Box */
.vision-mission-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin: 42px 0 60px 0;
    border: 2px solid #f0f0f0;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure it's above the glow */
}

/* Hover Effect - Zoom In with Glowing Shade */
.vision-mission-box:hover {
    transform: scale(1.05);  /* Smooth Zoom In */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);  /* Enhanced Shadow */
    background-color: #000;
    border-color: #000;

    h2 {
        color: var(--white-color);
    }

    p {
        color: #A4A4A4;
    }
}

/* Glowing Shade Effect */
.vision-mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1; /* Place the glow behind the box */
}

/* Glow Appears on Hover */
.vision-mission-box:hover::before {
    opacity: 1;
}

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

 /* About page below section */
.info-section {
    padding: 20px 0;
    background-color: #f9f9f9;
    display: flex;
    align-items: stretch; /* Stretch both sides equally */
    justify-content: center;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    height: 100%; /* Match the content height */
    display: flex;
    align-items: center; /* Ensure image stretches fully */
    justify-content: center;
}

/* Image Styling */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image fits without distortion */
    border-radius: 10px;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

/* Content Container */
.content-container {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;

    p {
        font-size: 15px;
    }

    h3 {
        font-family: "Times Now";
        font-size: 34px;
        font-weight: 600;
    }
}

/* Scroll Animation */
.content-box.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .image-container {
        height: auto;       /* Adjust height for mobile */
        max-height: 500px; 
    }
}

.pagination-wrapper {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.pagination .page-item {
    list-style: none;
    margin: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #D4D4D4;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    background-color: #f5f5f5;
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    color: #D4D4D4;
    pointer-events: none;
    background-color: #f5f5f5;
}

/* Style for Previous and Next buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 20px;
    padding: 0;
    width: 40px;
}

.no-rotate-btn:hover span {
    transform: none !important;
    transition: none !important;
}
