

:root {
    --primary-color: #041424;
    --secondary-color: #F1F5FD;
    --bg-color: #FFFFFF;
    --text-color: #45566A;
    --accent-color:#8c191c;
    --white-color: #FFFFFF;
    --divider-color: #0414241A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Manrope", sans-serif;
    --accent-font: "Sora", sans-serif;
}

/************************************/

/*** 	   02. General css		  ***/

/************************************/

body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.section-title h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
      font-family: var(--accent-font);
    /*cursor: none;*/
}

.section-title h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
      font-family: var(--accent-font);
    /*cursor: none;*/
}

.section-title p {
    margin-top: 20px;
      font-family: var(--accent-font);
    margin-bottom: 0;
}
::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
   
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    /* max-width: 100%; */
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--white-color);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--accent-color);
    border: none;
    padding: 17px 50px 17px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 102%;
    height: 100%;
    background-color: var(--accent-color);
    transition: all 0.5s ease-in-out;
    z-index: -1;
    transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
    transform: skewY(0deg) scaleY(2);
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(0);
}

.btn-default.btn-highlighted::after {
    background-color: var(--white-color);
}

.readmore-btn {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 26px;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
    transform: rotate(45deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    max-width: 1820px;
    background-color: var(--secondary-color);
    /*border-radius: 20px;*/
    margin: 0 auto;
}

.dark-section {
    background-color: var(--primary-color);
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    background-color: var(--accent-color);
    position: relative;
    display: inline-block;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color:white;
    padding: 8px 16px 8px 32px;
    margin-bottom: 10px;
}

.section-title h3::before {
    /* content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px; */
}



.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.dark-section .section-title h3 {
    border-color: var(--dark-divider-color);
}

.dark-section .section-title h3::before {
    background: var(--accent-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/

/**** 	   03. Header css		 ****/

/************************************/

header.main-header {
    /*position: absolute;*/
    position:fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
    padding: 0 15px;
}

.navbar {
    /*padding: 30px 0;*/
    align-items: center;
    background-color: white;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar-brand img{
    max-width:500px;
}
.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 4px;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    padding: 14px 10px !important;
    color: #8c191c;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
   
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    height: 100vh;
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}

/*************************************/

/***     	 04. banner css    	   ***/

/*************************************/
.banner {
    position: relative;
    /* background: var(--primary-color); */
    background: var(--accent-color);
    padding: 220px 0 100px;
    overflow: hidden;
}

/* animated background image */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://img.freepik.com/premium-photo/background-adorned-with-intricate-scientific-molecules-captivating-visual_795881-13630.jpg")
        center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;

    /* 👇 video-like zoom animation */
    transform: scale(1.15);
    animation: bannerBgZoom 10s ease-in-out infinite alternate;
}

/* keep content above bg */
.banner > * {
    position: relative;
    z-index: 1;
}
@keyframes bannerBgZoom {
    0% {
        transform: scale(1.15) translate(0, 0);
    }
    100% {
        transform: scale(1.35) translate(-40px, -30px);
    }
}

.banner-content-body {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-divider-color);
}

.banner-content-footer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-content-footer .banner-footer-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(33.33% - 20px);
}

.banner-footer-box .icon-box {
    position: relative;
    background-color: var(--dark-divider-color);
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.banner-footer-box .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 10px;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s ease-in-out;
}

.banner-footer-box:hover .icon-box::before {
    transform: scale(1) rotate(0);
}

.banner-footer-box .icon-box img {
    position: relative;
    max-width: 24px;
    z-index: 1;
}

.banner-footer-box .banner-footer-box-content {
    width: calc(100% - 60px);
}

.banner-footer-box .banner-footer-box-content p {
    text-transform: capitalize;
    text-align: left;
    color: var(--white-color);
    margin: 0;
}

.banner-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-left: 15px;
}

.banner-image-box {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-img-5,
.banner-img-4,
.banner-img-3,
.banner-img-2,
.banner-img-1 {
    width: 100%;
}

.banner-img-5 figure,
.banner-img-4 figure,
.banner-img-3 figure,
.banner-img-2 figure,
.banner-img-1 figure {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.banner-img-5 img,
.banner-img-4 img,
.banner-img-3 img,
.banner-img-2 img,
.banner-img-1 img {
    width: 100%;
    border-radius: 20px;
}

.banner-img-5 img,
.banner-img-4 img,
.banner-img-1 img {
    aspect-ratio: 1 / 2.18;
    object-fit: cover;
}

.banner-img-3 img,
.banner-img-2 img {
    aspect-ratio: 1 / 1.01;
    object-fit: cover;
}

/*************************************/

/***      	06. About Us css       ***/

/*************************************/

.about-us {
    padding: 100px 0;
}

.about-us-image {
    position: relative;
    margin-right: 15px;
}

.about-img figure {
    display: block;
    border-radius: 20px;
}

.about-img figure img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 20px;
}


@keyframes expmoveobject {
    50% {
        right: 80px;
    }
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.about-list-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.about-list-item .icon-box {
    margin-right: 10px;
}

.about-list-item .icon-box img {
    max-width: 34px;
}

.about-list-content {
    width: calc(100% - 44px);
}

.about-list-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.appointment-btn {
    text-align: right;
}




/*************************************/

/***        17. Footer css         ***/

/*************************************/

.main-footer {
    position: relative;
    background-color: var(--accent-color);
    padding: 100px 0 0;
    overflow: hidden;
}

/* Background image overlay */
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://t3.ftcdn.net/jpg/17/10/60/88/360_F_1710608870_CRY4sEV5AUlBLxPPL5mjrJAUw3YlygWH.jpg') center / cover no-repeat;
    opacity: 0.12; /* adjust opacity here */
    z-index: 0;
       animation: bannerBgZoom 10s ease-in-out infinite alternate;
}

/* Keep footer content above background */
.main-footer > * {
    position: relative;
    z-index: 1;
}
.about-footer {
    margin-right: 30px;
}

.footer-logo {
    margin-bottom: 60px;
}

.footer-logo img {
    width: 100%;
    max-width: 130px;
}

.about-footer-content p {
    text-align: justify;
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-links h3 {
    font-size: 20px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.footer-links ul li {
    list-style-type: none;
    color: var(--white-color);
    line-height: 1.6em;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

/* .footer-links ul li::marker {
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    display: none;
}

.footer-links ul li:hover::marker {
    color: var(--white-color);
      display: none;
} */

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: grey;
    list-style-type: none;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 10px;
    margin-right: 10px;
    overflow: hidden;
}

.footer-contact-item .icon-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    border-radius: 10px;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.footer-contact-item .icon-box img {
    position: relative;
    max-width: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.footer-contact-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.footer-contact-content {
    width: calc(100% - 50px);
}

.footer-contact-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover {
    color: var(--accent-color);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.footer-social-link hr {
    height: 1px;
    width: 45%;
    color: var(--dark-divider-color);
    opacity: 1;
}

.footer-social-link ul {
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
    margin: 0 20px;
    padding: 0;
}

.footer-social-link ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-link ul li:last-child {
    margin: 0;
}

.footer-social-link ul li a {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
}

.footer-social-link ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    border-radius: 10px;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.footer-social-link ul li:hover a::before {
    transform: scale(1) rotate(180deg);
}

.footer-social-link ul li a i {
    position: relative;
    font-size: 20px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.footer-social-link ul li a:hover i {
    color: var(--primary-color);
}

.footer-copyright {
    padding: 30px 0 60px;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

.footer-terms-condition ul {
    display: flex;
    justify-content: end;
    gap: 30px;
    list-style: disc;
    margin: 0;
    padding-left: 0;
}

.footer-terms-condition ul li::marker {
    color: var(--accent-color);
}

.footer-terms-condition ul li:first-child::marker {
    font-size: 0;
}

.footer-terms-condition ul li a {
    color: var(--white-color);
    line-height: 1.6em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-terms-condition ul li:hover a {
    color: var(--accent-color);
}







/************************************/

/***      34. Responsive css      ***/

/************************************/

@media only screen and (max-width: 1820px) {
    .bg-section {
        /*max-width: calc(100% - 40px);*/
        /*margin: 0 20px;*/
    }
    .banner-content-box .section-title {
        margin-right: 0;
    }
    /*.main-footer {*/
    /*    margin-bottom: 20px;*/
    /*}*/
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 40px 15px 15px;
    }
    .btn-default::before {
        right: 15px;
        width: 18px;
        height: 18px;
    }
    .btn-default.btn-border {
        padding: 14px 40px 14px 15px;
    }
    .navbar {
        padding: 20px 0;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .bg-section {
        max-width: 100%;
        border-radius: 0;
        margin: 0;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-row .section-title.section-title-center {
        max-width: 100%;
    }
    .section-content-btn .section-btn {
        margin-top: 20px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h3 {
        padding: 6px 14px 6px 26px;
    }
    .section-title h3::before {
        left: 14px;
    }
    .section-title h1 {
        font-size: 45px;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
        margin-top: 15px;
    }
    .banner {
        padding: 140px 0 50px;
    }
    .banner-content {
        margin-bottom: 30px;
    }
    .banner-content .section-title p {
        max-width: 100%;
    }
    .banner-content-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .banner-images {
        max-width: 80%;
        margin: 0 auto;
    }
    .cta-contact-box {
        padding: 30px 0 0;
    }
    .cta-contact-box .cta-contact-item {
        padding: 0;
    }
    .about-us {
        padding: 50px 0;
    }
    .about-us-image {
        margin: 0 0 30px;
    }
    .about-img figure img {
        aspect-ratio: 1 / 0.7;
    }
    .company-experience-content h3 {
        font-size: 26px;
    }
    .about-us-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }
    .main-footer {
        padding: 50px 0 0;
        margin-bottom: 0;
    }
    .about-footer {
        margin: 0 0 30px;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-social-link {
        margin-top: 40px;
    }
    .footer-copyright {
        padding: 30px 0;
    }
    .page-header {
        padding: 170px 0 80px;
    }
    .page-header-box h1 {
        font-size: 45px;
    }
   
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .banner-content-footer {
        gap: 15px;
    }
    .banner-content-footer .banner-footer-box {
        width: calc(33.33% - 10px);
        display: block;
    }
    .banner-footer-box .icon-box {
        margin: 0 0 10px;
    }
    .banner-footer-box .banner-footer-box-content {
        width: 100%;
    }
    .banner-footer-box .banner-footer-box-content p {
        font-size: 14px;
    }
    .banner-images {
        max-width: 100%;
        gap: 15px;
    }
    .banner-image-box {
        width: calc(33.33% - 10px);
        gap: 15px;
    }
    .cta-contact-content h3 {
        font-size: 18px;
    }
    .about-img figure img {
        aspect-ratio: 1 / 1.1;
    }
    .company-experience {
        padding: 15px;
        right: 20px;
        bottom: 20px;
    }
    .about-us-body {
        gap: 20px 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .about-list-item {
        width: calc(50% - 7.5px);
    }
    .about-list-item .icon-box {
        margin-right: 5px;
    }
    .about-list-item .icon-box img {
        max-width: 30px;
    }
    .about-list-content {
        width: calc(100% - 35px);
    }
    .about-list-content h3 {
        font-size: 16px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    .footer-links {
        margin-bottom: 30px;
    }
    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-links ul li {
        margin-bottom: 10px;
    }
    .footer-contact-item {
        margin-bottom: 15px;
    }
    .footer-social-link {
        margin-top: 0px;
    }
    .footer-social-link ul {
        margin: 0 10px;
    }
    .footer-social-link ul li {
        margin-right: 15px;
    }
    .footer-copyright {
        padding: 15px 0;
    }
    .footer-copyright-text {
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-terms-condition ul {
        justify-content: center;
    }
    
}
.banner-slider .swiper-slide {
    /* padding: 120px 0; */
}

.banner-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}

.banner-slider .swiper-pagination-bullet-active {
    opacity: 1;
}


.overview-section {
    
  padding: 120px 0;
  background: #fff;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images */
.overview-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
}

.img-large img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-stack img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}

/* Rotating badge */
.rotating-badge {
  position: absolute;
  bottom: -40px;
  left: 40%;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-badge svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite;
}

.rotating-badge text {
  fill: var(--brown);
  font-size: 12px;
  letter-spacing: 3px;
}

.rotating-badge span {
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.1;
}

/* Content */
.overview-content h2 {
  font-size: 42px;
  color: #0f2a2e;
  margin-bottom: 20px;
}

.overview-content p {
    text-align: justify;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.overview-content ul {
  list-style: none;
  padding: 0;
}

.overview-content li {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 12px;
}

/* Animation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
/* Content comes first */
  .overview-content {
    order: 1;
  }

  /* Images come second */
  .overview-images {
    order: 2;
    margin-top: 30px;
  }
  .img-large img {
    height: 420px;
  }

  .rotating-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .overview-content h2 {
    font-size: 32px;
  }

  .img-stack img {
    height: 200px;
  }
 
}
.img-large,
.img-stack img {
  overflow: hidden;
  border-radius: 20px;
}
.img-large,
.img-stack img {
  transition: transform 0.6s ease;
}

.img-large:hover,
.img-stack img:hover {
  transform: translateY(-6px);
}
.rotating-badge text {
  fill: #4e0000;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


.research-exact {
  background: var(--accent-color);
  padding: 90px 0;
}

/* Heading */
.pill {
  border: 1px solid #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 18px;
  color:white;
  background-color: var(--accent-color);
}

.head-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.head-grid1 h3 {
  font-size: clamp(32px, 4vw, 42px);
  color: #ffffff;
  font-weight: 700;
}
.head-grid h3 {
  font-size: clamp(32px, 4vw, 42px);
  color: #ffffff;
  font-weight: 700;
}

.head-grid p {
  color: #ffffff;
  line-height: 1.7;
}

.research-item {
  position: relative;
  transition: transform .35s ease;
}

.research-item:hover {
  transform: translateY(-6px);
}

/* WHITE CARD BASE */
.text-card {
    /* background-image: url(); */
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 26px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  overflow: hidden;
  transition: all .4s ease;
}

/* BACKGROUND IMAGE */
.text-card::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
@media (max-width: 768px) {
  .research-head .head-grid {
    display: block;      /* stack heading and paragraph */
    text-align: center;  /* optional: center content on mobile */
  }

  .research-head .head-grid h2 {
    font-size: 32px;     /* adjust font size for mobile */
    line-height: 1.3;
    text-align: left;
  }

  .research-head .head-grid p {
    font-size: 16px;     /* adjust font size for mobile */
    margin-top: 12px;
    text-align: left;
  }
}
/* DARK OVERLAY */
.text-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

/* ICON */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  display: grid;
  place-items: center;
  /* margin: 0 auto 18px; */
  transition: all .4s ease;
  z-index: 2;
  color:white;
  font-size:24px;
}

/* CONTENT */
.content {
    margin-top:20px;
  text-align: left;
  transition: all .4s ease;
  z-index: 2;
}

.text-card h3 {
  font-size: 20px;
  color: #0f2a2e;
  margin-bottom: 10px;
}

.text-card p {
  font-size: 14px;
  color: #5f7f83;
}

/* YOUTUBE BUTTON */
/* YOUTUBE BUTTON */
.yt-btn {
  position: absolute;
  top: 68px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-color);
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 0;
  transform: scale(.8);
  transition: all .35s ease;
  z-index: 99999;
  overflow: visible;
}

/* Wavy ripple */
.yt-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  z-index: -1;
  animation: wavePulse 0.8s ease-out infinite;
}

/* Hover boost */
.yt-btn:hover {
  background: #ffffff;
  color: #000;
  transform: scale(1);
}
/* YOUTUBE BUTTON */
.yt-btn1 {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-color) ;
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 0;
  transform: scale(.8);
  transition: all .35s ease;
  z-index: 99999;
  overflow: visible;
}

/* Wavy ripple */
.yt-btn1::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  z-index: -1;
  /* animation: wavePulse 0.8s ease-out infinite; */
}

/* Hover boost */
.yt-btn1:hover {
  background: #ffffff;
  color:#000;
  transform: scale(1);
}
/* Keyframes */
@keyframes wavePulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

	
/* 🔥 HOVER STATE */
.research-item:hover .text-card::before,
.research-item:hover .text-card::after {
  opacity: 1;
}

.research-item:hover .icon {
      width: 46px;
  height: 46px;
  position: absolute;
  top: 18px;
  left: 18px;
  margin: 0;
  background: rgba(255,255,255,.9);
  font-size: 22px;
}

.research-item:hover .content {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  text-align: left;
}
.research-item:hover .icon{
    color: var(--accent-color);
}
.research-item:hover h3,
.research-item:hover p {
  color: #fff;
}

.research-item:hover .yt-btn  , .research-item:hover .yt-btn1 {
  opacity: 1;
  transform: scale(1);
}

/* BOOK SLOT BUTTON */
/* .book-btn {
  position: absolute;
  bottom: 20px;
  left: 22px;
  padding: 10px 18px;
  background: #ff3b3b;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s ease;
  z-index: 3;
} */
 .book-btn {
    display: none;
 }
.research-item:hover .book-btn {
    background-color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
width: 50%;
    color: var(--accent-color);
display: block;
}
.research-item .book-btn:hover{
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.research-item {
  position: relative;
  overflow: hidden;
    border-radius: 20px;
}

/* background layer */
.research-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hover-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 0;
   
}

/* dark premium overlay */
.research-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.research-item:hover::before,
.research-item:hover::after {
     border-radius: 20px;
  opacity: 1;
  transform: scale(1);
}

/* content above bg */
.text-card {
  position: relative;
  z-index: 2;
}
.text-card:hover{
    background: none;
}

/* SECTION */
.pdf-actions-section {
  padding: 80px 0;
  background: #fff;
}

/* LEFT CONTENT */
.pdf-info {
  display: flex;
  align-items: center;
}

/* ICON WRAPPER */
.icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  overflow: visible;
}

/* RED PARALLELOGRAM */
.parallelogram {
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  transform: skew(-18deg);
  border-radius: 14px;
  z-index: 1;
  transition: transform 0.4s ease;
}

/* ICON IMAGE (EXTENDS OUTSIDE) */
.extend-icon {
  width: 260px;               /* bigger than parallelogram */
  max-width: none;
  height: auto;
  z-index: 2;
  transform: translateY(-12px);
  animation: floatIcon 4s ease-in-out infinite;
  filter: drop-shadow(0 18px 35px rgba(212,0,0,0.35));
}

/* TEXT */
.text-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.text-content p {
  color: #ffffff;
  max-width: 520px;
  line-height: 1.7;
}

/* BUTTONS */
.pdf-buttons {
  display: flex;
}

.pdf-btn {
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pdf-btn.primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 10px 30px rgba(212,0,0,0.3);
}

.pdf-btn.secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

/* BUTTON HOVER */
.pdf-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

/* HOVER EFFECTS */
.icon-wrap:hover .extend-icon {
  transform: translateY(-18px) scale(1.05);
}

.icon-wrap:hover .parallelogram {
  transform: skew(-18deg) scale(1.05);
}

/* FLOATING ICON ANIMATION */
@keyframes floatIcon {
  0%,100% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(-22px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pdf-info {
    flex-direction: column;
    text-align: center;
  }

  .extend-icon {
    width: 130px;
  }

  .text-content p {
    max-width: 100%;
  }
}
/* SECTION BACKGROUND */
.pdf-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b1a2a, #10263f);
  display: flex;
  justify-content: center;
}

/* PARALLELOGRAM CONTAINER */
.pdf-wrapper {
  max-width: 900px;
  width: 100%;
  transform: skew(-6deg);
}

/* CONTENT CARD */
.pdf-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 50px 60px;
  border-radius: 18px;
  transform: skew(6deg);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: floatUp 1.2s ease forwards;
}

/* HEADING */
.pdf-card h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

/* DESCRIPTION */
.pdf-card p {
  color: #cfd9e4;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* BUTTON WRAPPER */
.pdf-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.pdf-btn {
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 600;
  color: #0b1a2a;
  /* background: linear-gradient(135deg, #ffd36a, #ffb703); */
  border-radius: 50px;
  text-decoration: none;
  /* box-shadow: 0 12px 30px rgba(255, 183, 3, 0.35); */
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* OUTLINE STYLE */
.pdf-btn.outline {
  background: transparent;
  color: #a39c8a;
  border: 2px solid #ffffff;
  box-shadow: none;
}

/* HOVER EFFECT */
.pdf-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.pdf-btn:hover::after {
  transform: translateX(100%);
}

.pdf-btn:hover {
  transform: translateY(-4px);
}

/* OUTLINE HOVER */
.pdf-btn.outline:hover {
  background: #ffffff;
  color: #0b1a2a;
}

/* ANIMATION */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: skew(6deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: skew(6deg) translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pdf-wrapper {
    transform: none;
  }

  .pdf-card {
    transform: none;
    padding: 40px 25px;
  }

  .pdf-card h2 {
    font-size: 28px;
  }

  .pdf-card p {
    font-size: 15px;
  }
}
/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	background-image: url('../images/section-bg-shape-1.png');
    background-repeat: no-repeat;
    background-position: right -40px bottom 100px;
    background-size: auto;
	padding: 100px 0;
}

.about-us .section-row .section-title{
	margin-right: 15px;
}

.customer-rating-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 30px;
}

.customer-rating-content{
	border-right: 1px solid var(--divider-color);
	margin-right: 40px;
	padding-right: 40px;
}

.customer-rating-star{
	margin-bottom: 15px;
}

.customer-rating-star i{
	color: var(--accent-color);
	font-size: 16px;
}

.customer-rating-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.customer-rating-content p{
	margin: 0;
}

.customer-rating-images{
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px rgba(23, 44, 69, 0.10);
	border-radius: 100px;
	padding: 10px;
}

.customer-rating-images .satisfy-client-image{
	margin-left: -10px;
}

.customer-rating-images .satisfy-client-image:first-child{
	margin-left: 0;
}

.customer-rating-images .satisfy-client-image.add-more,
.customer-rating-images .satisfy-client-image figure{
	width: 40px;
	height: 40px;
}

.about-us-boxes{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-image-content-box-1{
	position: relative;
	width: calc(25% - 20px);
}

.about-image{
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.about-image::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(23, 44, 69, 0.00) 39.29%, var(--primary-color) 100%);
	width: 100%;	
	height: 100%;
}

.about-image figure{
	display: block;
	height: 100%;
}

.about-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.741;
	object-fit: cover;
}

.about-image-content{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 2;
}

.video-play-button a{
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/*cursor: none;*/
}

.video-play-button a:after,
.video-play-button a:before{
	content: '';
	position: absolute;
	top: -34%;
	left: -34%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 22px;
	color: var(--primary-color);
}

.about-video-title{
	margin-top: 30px;
}

.about-video-title h3{
	font-size: 20px;
	color: var(--white-color);
}

.about-counter-box{
	width: calc(34% - 20px);
	background: var(--accent-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
}

.about-counter-title{
	display: block;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	/*padding-bottom: 30px;*/
}

.about-counter-title h2{
	/* width: 95px; */
	font-size: 28px;
	color: var(--white-color);
}

.about-counter-title h3{
	font-size: 18px;
	color: var(--white-color);
}

.about-counter-content ul{
	padding: 0 0 0 20px;
	margin: 0 0 15px 0;
}

.about-counter-content ul li{
	color: var(--white-color);
	margin-bottom: 10px;
}

.about-counter-content ul li:last-child{
	margin-bottom: 0;
}

.about-counter-content p{
	color: var(--white-color);
	margin-bottom: 20px;
}

.about-counter-content .readmore-btn{
	color: var(--white-color);
}

.about-counter-content .readmore-btn::before{
	background-image: url('../images/arrow-white.svg');
}

.about-image-content-box-2{
	position: relative;
	width: calc(41% - 20px);
}

.about-image-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.about-image-content ul li{
	display: inline-block;
	font-size: 14px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border-radius: 30px;
	padding: 7px 20px;
	transition: all 0.4s ease-in-out;
}

.about-image-content ul li:hover{
	background: var(--accent-color);
	color: var(--primary-color);
}
.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.white-content h4 {
    font-size: 22px;
    font-weight: 600;
}

.white-content h5 {
    font-size: 16px;
    opacity: 0.9;
}

.white-content h6 {
    font-size: 14.5px;
    font-weight: 500;
    opacity: 0.85;
}

.white-content span {
    font-weight: 700;
    opacity: 0.9;
}

/* Contact box styling */
.contact-info-box {
    margin-top: 14px;
    padding: 14px 18px;
    border-left: 3px solid rgba(255,255,255,0.6);
}

/* Links */
.white-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.white-content a:hover {
    text-decoration: underline;
}
.about-image-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.about-image-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.about-image-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f4c27f; /* accent color */
    font-weight: bold;
}

/* Newsletter box */
.newsletter-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    /* border-left: 4px solid #f4c27f; */
    border-radius: 10px;
}

.newsletter-box h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.newsletter-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #ffffff;
}

/* PDF button */
.pdf-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdf-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    color: var(--accent-color);
    box-shadow: 0 8px 18px rgba(244,194,127,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    /* .about-image-content {
        padding: 20px;
    } */

    .newsletter-box {
        padding: 16px;
    }

    .pdf-btn {
        width: 100%;
        text-align: center;
    }
    
}
.box {
    border-radius: 20px;
  position: relative;
  width: 80%;
  height: 50%;
  margin: 20px auto 0 auto;

  /* Background image */
  background: url("../images/finalresized-images/1450x750.jpg.jpeg") center / cover no-repeat;

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 50px),
    50% 100%,
    0 calc(100% - 50px)
  );

  overflow: hidden;
}

/* Red overlay */
.box::before {
    border-radius: 20px;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 39, 0.75); /* adjust opacity here */
  z-index: 1;
}

/* Content stays above overlay */
.box > * {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* a:not(#notERR){
  color: rgb(255, 255, 255);
} */

a#link {
 color: black; 
}

.box1 {
    border-radius: 20px;
  position: relative;
  width: 80%;
  height: 50%;
  margin: 20px auto 0 auto;

  background: url("../images/finalresized-images/1450x900.jpg.jpeg")
    center / cover no-repeat;

  /* Notched top center */
  clip-path: polygon(
    0 50px,
    50% 0,
    100% 50px,
    100% 100%,
    0 100%
  );

  overflow: hidden;
}

/* 🔲 Black Overlay */
.box1::before {
    border-radius: 20px;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* adjust opacity */
  z-index: 1;
}

/* Content stays above overlay */
.box1 > * {
  position: relative;
  z-index: 2;
}



.contact-section {
  padding: 80px 0;
}

/* LEFT */
.contact-intro .contact-tag {
  display: inline-block;
  background: rgba(180, 0, 0, 0.1);
  color: #b00000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.contact-intro p {
  font-size: 16px;
  color: #ffffff;
  max-width: 420px;
}

/* RIGHT CARD */
.contact-card {
  width: 100%;              /* FULL WIDTH */
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  font-size: 22px;
  color: #b00000;
}

.contact-item h5 {
  font-size: 16px;
  margin: 0 0 4px;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-intro h2 {
    font-size: 32px;
  }

  .contact-card {
    margin-top: 30px;
  }
  .about-image-content-box-1{
    width:100%;
  }
}
.footer-social-list {
    list-style-type: none;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.footer-social-list li {
    margin-bottom: 10px;
}

.footer-social-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Icon circle */
.social-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon */
.social-icon i {
    font-size: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

/* Hover effects */
.footer-social-list a:hover .social-icon {
    background: #fff;
}

.footer-social-list a:hover .social-icon i {
    color: #c0392b; /* accent color */
}

.footer-social-list a:hover {
    color: #fff;
}

/* Initially hide the button */
.research-item .book-btn1 {
  display: none;       /* Remove it completely from layout */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

/* Show the button on hover */
.research-item:hover .book-btn1 {
  display: block; /* Now it occupies space */
  opacity: 1;
  transform: translateY(0);
}
.high-text{
    color:white;
    font-weight: bold;
}

.newslwtter-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    align-items:center;
}
@media (min-width: 990px) and (max-width: 1480px) {
  .section-title h1 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}
.section-title p{
    font-size:14px;
}
.banner{
    padding: 120px 0 100px;
}
.navbar{
    padding: 10px;
}
.navbar-brand img{
    max-width:400px;
}
.main-menu ul li a{
    font-size:14px;
}

.banner-img-5 img,
.banner-img-4 img,
.banner-img-1 img {
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
}
.head-grid h3{
    font-size: 32px;
}
.head-grid p , .text-content p{
    font-size:14px;
}
.banner-img-3 img,
.banner-img-2 img {
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}
.box , .box1{
    width: 90%;
}
.overview-content h2{
    font-size:32px;
}
}

@media (max-width: 768px) {
    .navbar-brand img{
        max-width: 270px;
    }
     .box , .box1{
    width: 90%;
}
 .about-counter-box{
    width:100%;
 }
 .about-image-content-box-2{
    width:100%;
 }

    .contact-section {
        padding: 40px 0;
    }
    .contact-intro h2 {
        font-size: 28px;
    }
    .contact-intro p {
        max-width: 100%;   
     }
    }

    #loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #ffffff, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Wrapper */
.loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

/* Logo */
.logo {
  position: absolute;
  inset: 25px;
  width: 70px;
  height: auto;
  /* animation: logoRotate 2.2s linear infinite,
             logoPulse 1.6s ease-in-out infinite; */
  filter: drop-shadow(0 0 12px rgba(180, 60, 60, 0.4));
}

/* Outer ring */
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #b43c3c;
  border-right-color: #b43c3c;
  animation: ringSpin 1.5s linear infinite,
             ringPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes logoRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(180deg); }
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(180,60,60,0.2); }
  50% { box-shadow: 0 0 25px rgba(180,60,60,0.45); }
}

/* Toggle button */
/* Premium Hamburger Button */
.navbar-toggle1 {
    display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hover background */
.navbar-toggle1:hover {
  background: rgba(180, 60, 60, 0.08);
  box-shadow: 0 0 0 6px rgba(180, 60, 60, 0.05);
}

/* Lines container */
.navbar-toggle1 span {
  position: absolute;
  width: 22px;
  height: 2.5px;
  background: #111;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Line positions */
.navbar-toggle1 span:nth-child(1) {
  transform: translateY(-7px);
}

.navbar-toggle1 span:nth-child(2) {
  width: 16px;
}

.navbar-toggle1 span:nth-child(3) {
  transform: translateY(7px);
}

/* Hover line animation */
.navbar-toggle1:hover span:nth-child(2) {
  width: 22px;
}

.navbar-toggle1:hover span {
  background: #b43c3c;
}

/* ACTIVE STATE – morph to close icon */
.navbar-toggle1.active span:nth-child(1) {
  transform: rotate(45deg);
}

.navbar-toggle1.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle1.active span:nth-child(3) {
  transform: rotate(-45deg);
}


/* Offcanvas menu */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: 10000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 25px rgba(0,0,0,0.12);
}

/* Active state */
.mobile-offcanvas.active {
  transform: translateX(0);
}

/* Header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header img {
    margin-top:50px;
  max-width: 200px;
}

.close-menu1 {
  font-size: 32px;
  cursor: pointer;
}

/* Menu list */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.mobile-nav li {
  margin-bottom: 22px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  padding-left: 10px;
  position: relative;
  transition: 0.3s;
}

/* Hover effect */
.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: #b43c3c;
  transition: 0.3s;
}

.mobile-nav a:hover {
  padding-left: 22px;
  color: #b43c3c;
}

.mobile-nav a:hover::before {
  width: 14px;
}

/* Overlay */
.mobile-overlay1 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

.mobile-overlay1.active {
  opacity: 1;
  visibility: visible;
}
.mobile-offcanvas.active ~ .navbar-toggle1 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideItem 0.4s ease forwards;
}

.mobile-nav li:nth-child(1){animation-delay:.1s}
.mobile-nav li:nth-child(2){animation-delay:.2s}
.mobile-nav li:nth-child(3){animation-delay:.3s}

@keyframes slideItem {
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width : 776px ) {
    .navbar-toggle1{
        display:flex;
    }
    .about-image-content{
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	z-index: 2;
}
.footer-social-link img{
    /*width:10px;*/
    height:100px;
}
.contact-card{
    padding:30px;
}
}

.bg-img {
  position: absolute;
  left: -30%;
  width: 160px;
 opacity: 0.5;
  animation: floatX 6s ease-in-out infinite;
}

/* Left–Right movement */
@keyframes floatX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all .3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: .9;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all .3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* Popup container */
.mfp-wrap {
  z-index: 999999;
}

/* Image responsiveness */
.mfp-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .mfp-img {
    max-width: 95vw;
    max-height: 70vh;
    border-radius: 8px;
  }
}


.read-btn{
    color: var(--accent-color);
      cursor: pointer;
}
.read-btn:hover{
    text-decoration: underline;
     color: var(--accent-color);
}
.research-item:hover .read-btn{
    color: white;
      text-decoration: underline;
}

/* MODAL WRAPPER */
.research-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

/* OVERLAY */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

/* MODAL BOX */
.modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90%, 620px);
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: all 0.35s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ACTIVE STATE */
.research-modal.active {
  display: block;
}

.research-modal.active .modal-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

/* TEXT */
.modal-box h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* MOBILE */
@media (max-width: 480px) {
  .modal-box {
    padding: 22px;
  }

  .modal-box h2 {
    font-size: 20px;
  }
  .overview-grid{
      gap:0px;
  }
}
.news-ticker-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 44px;
  display: flex;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

/* NEWS BOARD */
.news-label {
  min-width: 140px;
  background: linear-gradient(135deg, var(--accent-color), #c90000);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-label {
  position: relative;
  overflow: hidden;
  animation: newsPulse 2.5s ease-in-out infinite;
}

/* pulse glow */
@keyframes newsPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 60, 60, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 60, 60, 0.8);
  }
}
.news-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.5) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -120%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.news-label span {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 16px;
}

/* TICKER AREA */
.news-ticker {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
}

/* ANIMATION */
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .news-label {
    min-width: 100px;
  }

  .ticker-track span {
    font-size: 14px;
  }
  
}


.hero-section {
  background: #f8f8f8;
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 50vh;
}

/* LEFT TEXT */
.hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  padding: 80px;
}
/* .hero-text span{
    text-align: right;
} */
.hero-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.hero-text .pill {
  /* align-self: flex-start; */
}
.hero-text h1 {
  font-size: 42px;
  line-height: 1.25;
}

.hero-text h1 span {
  color: var(--accent-color);
}

.hero-text p {
  margin-top: 18px;
  max-width: 600px;
  color: #3f3f3f;
}

/* RIGHT PANEL */
.notice-panel {
  background: #ffffff;
  color: #111;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.panel-header .dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
}

.panel-header h3 {
  font-size: 20px;
  font-weight: 700;
}

/* VERTICAL SLIDER */
.notice-window {
  height: 260px; /* shows ~5 items */
  overflow: hidden;
  border-left: 4px solid #ff3b3b;
  padding-left: 16px;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
    min-height: 90px;  
    line-height:20px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.notice-list small {
  display: block;
  color: #666;
    margin-top: 14px;
}

/* BADGES */
.badge {
  background: #e5e7eb;
  color: #111;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  margin-right: 8px;
}

.badge.red {
  background: #ff3b3b;
  color: #fff;
}

/* BOTTOM TICKER */
.announcement-bar {
  display: flex;
  align-items: center;
  background: var(--accent-color);
  color: #fff;
  padding: 14px 20px;
}

.announcement-bar strong {
  margin-right: 30px;
  white-space: nowrap;
}

.marquee {
  overflow: hidden;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 50px 30px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
  .box-left{
      display:flex;
      justify-content:center;
  }
}

.notice-controls {
  display: flex;
  /* justify-content: center; */
  gap: 14px;
  padding-top: 12px;
}

.ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  /* background: #111;
  color: #fff; */
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s ease;
}

.ctrl-btn:hover {
  background: var(--accent-color);
  color:white;
  transform: scale(1.1);
}
.news-ticker-wrapper {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.news-ticker-wrapper.hide-ticker {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
@media (min-width: 900px) and (max-width: 1400px) {
  .hero-text h1 , .head-grid1 h3{
   font-size: 32px;
  }
  .hero-text p{
      max-width:650px;
  }
   .img-large img{
      height:480px;
  }
  .img-stack img{
      height:230px;
  }
}
/* Overlay */
.img-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* Active State */
.img-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.img-popup-box {
  position: relative;
  max-width: 520px;
  width: 90%;
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Animation */
.img-popup-overlay.active .img-popup-box {
  transform: scale(1) translateY(0);
}

/* Image */
.img-popup-box img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Close Button */
.img-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  /* background: rgba(0, 0, 0, 0.6); */
  background: var(--accent-color);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.img-popup-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.85);
   color: var(--accent-color);
}

/* Mobile */
@media (max-width: 480px) {
  .img-popup-box {
    max-width: 90%;
  }
}
@media (min-width: 500px) and (max-width: 1400px) {
  .img-popup-box {
    max-width: 380px;
  }
}
