@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* font-family: "Roboto", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* font-family: "Lato", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');
/* font-family: "Frank Ruhl Libre", serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');
/* font-family: "Noto Sans Arabic", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
/* font-family: "Libre Baskerville", serif; */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* font-family: "Merriweather Sans", sans-serif; */

/*********************************************************
    Common CSS Here
*********************************************************/
:root {
    --common-font: "Roboto", sans-serif;
    --menu-font: "Merriweather Sans", sans-serif;
    --dark-black: #1f1f1f;
    --orange: #d95600;
    --red: #e60001;
    --dark-red: #7D000C;
    
    --commonHeadingColor: linear-gradient(90deg, #ff2424, #00069f);
}

html, body {
    font-family: var(--common-font);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    width: 90% !important;
    max-width: 90% !important;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {text-decoration: none;}
.bold {font-weight: bold;}
.italic {font-style: italic;}
.center {text-align: center;}
.mob-view {display: none;}
.desk-view {display: block;}
.ur {font-family: var(--urdu-font);}

/*********************************************************
    Header Begin Here
*********************************************************/
#header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 7%;
    background-color: #fff;
}
.left-header {width: 200px;}
.left-header .logo img {max-height: 50px;}

.middle-header {
    width: calc(80% - 260px);
    text-align: center;
}
.middle-header .tagline  > a {display: none;}

.right-header {
    width: 20%;
    text-align: right;
}
.right-header .tagline {justify-content: end;}

.tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.tagline p {
    background: linear-gradient(to right, #7D000C, #012E58);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #1B487B;
    margin-bottom: 0;
}

.tagline > a {
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 15px;
    background-image: linear-gradient(to right, #370389, #9f1b47);
    border-radius: 10px;
    transition: all 0.3s;
}
.tagline > a:hover {transform: scale(1.02);}

.right-header .tagline > a {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
}

.right-header p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 8px;
}

.right-header p a {
    font-weight: 500;
    color: #4B1C4B;
    transition: all 0.3s;
}
.right-header p a:hover {color: var(--red);}

.social-media {
    display: flex;
    justify-content: end;
    gap: 4px;
}

.social-media li a {
    display: block;
    width: 34px;
    height: 30px;
    line-height: 22px;
    font-size: 16px;
    padding: 5px;
    color: #999999;
    border: 1px solid #d1d1d1;
    text-align: center;
    transition: all 0.3s;
}

.social-media li a:hover {
    color: var(--dark-red);
    border-color: var(--dark-red);
}

/*********************************************************
    Navbar Begin Here
*********************************************************/
#navbar {
    /* background-image: linear-gradient(to right, #3F203D, #780F0F); */
    /* background-image: linear-gradient(to right, #d586d0, #4367ff); */
    background-image: linear-gradient(135deg, #ea6673 0%, #764ba2 100%);
}

#navbar .nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 7%;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: end;
    gap: 30px;
}

.menu > .menu-item > a {
    font-size: 15px !important;
    font-weight: 400;
    color: #fff;
    display: block;
    padding-top: 17px;
    padding-bottom: 17px;
    transition: all 0.2s;
    position: relative;
}

.menu .menu-item a {
    font-family: var(--menu-font);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 16px;
}

.menu > .menu-item > a:hover {color: #b8ffc8;}
.menu-item-has-children {position: relative;}
.menu-item-has-children > a {padding-right: 18px;}

.menu-item-has-children > a::after {
    content: '';
    border: 1px solid #fff;
    border-top: none;
    border-left: none;
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 17px;
    right: 0;
    transform: rotate(45deg);
}

.menu-item-has-children:hover > a::after {border-color: #a9ccff;}
.menu-item-has-children:hover a {color: #a9ccff;}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transition: all 0.4s;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -10px;
    z-index: 9999;
    min-width: 210px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 2px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
}

.sub-menu::before {
    content: "";
    width: 100%;
    height: 13px;
    background-color: transparent;
    position: absolute;
    top: -13px;
    left: 0;
    z-index: 1;
}

.sub-menu .menu-item a {
    align-items: start;
    font-weight: 300;
    white-space: nowrap;
    color: var(--dark-black);
    border-bottom: 1px dashed #f1f1f1;
    padding: 14px 15px;
    transition: all 0.3s;
}
.sub-menu .menu-item:last-child a {border: none;}

.sub-menu .menu-item a:hover {
    color: #000;
    background-color: #f1f7ff;
}

/*********************************************************
    Slider Banner Begin Here
*********************************************************/
.slider-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(30, 64, 175, 0.6) 50%, rgba(30, 64, 175, 0.2) 100%);
}

.gradient-green {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.8) 0%, rgba(5, 150, 105, 0.6) 50%, rgba(5, 150, 105, 0.2) 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.8) 0%, rgba(147, 51, 234, 0.6) 50%, rgba(147, 51, 234, 0.2) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight {
    display: block;
    background: linear-gradient(135deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.slide-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 42rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slide .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.slide .btn-primary, .slide .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.slide .btn-primary {
    background: #ea580c;
    color: white;
}

.slide .btn-primary:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.slide .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.slide .btn-secondary:hover {
    background: white;
    color: #1e40af;
}

.slide .arrow-icon, .slide .users-icon, .slide .book-icon, .slide .heart-icon {
    transition: transform 0.3s ease;
}

.slide .btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.slide .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.slide .stat-item {
    text-align: center;
}

.slide .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.slide .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Navigation */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 2rem;
}

.nav-next {
    right: 2rem;
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.25);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.75);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fb923c, #fbbf24);
    width: 33.33%;
    transition: width 0.7s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*********************************************************
    Inner Page Banner Begin Here
*********************************************************/
.top-banner-section{
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1000;
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.top-banner-section::before{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
    z-index: 1;
    background: linear-gradient(140deg, #1e3a8a, #1e3a8a, #853309);
}

.top-banner-section .banner-caption {
    position: relative;
    z-index: 9;
}

.top-banner-section .banner-caption h1{
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}

.top-banner-section .banner-caption h1::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 171px;
    height: 6px;
    background: linear-gradient(90deg, #93c5fd, #fff6ec, #fdba74);
    border-radius: 2px;
}

.top-banner-section .banner-caption h1 span{
    background-image: linear-gradient(90deg, #93c5fd , #fff6ec, #fdba74 ); /* Three-color gradient */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.top-banner-section .banner-caption .gatway {
    color: rgb(219 234 254);
    font-size: 1.75rem;
    line-height: 2.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.top-banner-section .banner-caption .discover {
    color: rgb(191 219 254);
    line-height: 1.625;
    font-size: 1.1rem;
}

/*********************************************************
    About MediCare Begin Here
*********************************************************/
.about-medicare {
    margin-bottom: 80px;
    padding: 0 3%;
}
.about-brief {display: flex;}

.brief-thumb {
    padding-top: 2px;
    margin-right: -6px;
}
.brief-thumb img {border-radius: 0 0 0 100px;}

.about-medicare .about-block {
    width: calc(100% - 176px);
    background-color: #ececec;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.about-medicare .brief-info {padding: 40px 35px;}

.brief-info h5 {
    background: linear-gradient(to right, #1C0045, #ff0000 80%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.brief-info h2 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 30px;
    color: #AE0000;
    margin-bottom: 20px;
}
.brief-info h2 span {white-space: nowrap;}

.brief-info p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2C0F4F;
    margin-bottom: 20px;
}

.brief-link {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.brief-info a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    color: #3b4657;
    border: 1px solid #3b4657;
    transition: all 0.4s ease;
}

.brief-info a:hover {
    border-color: #b0c1d6;
    color: #64748b;
    transform: translateY(-3px);
}

.brief-info a:first-child {
    background: #3b82f6;
    border: none;
    color: #fff;
}
.brief-info a:hover:first-child {background: #2563eb;}

.brief-info a:nth-child(even) {
    background: linear-gradient(90deg, #d1a009, #1888ac);
    border: none;
    color: #fff;
}
.brief-info a:hover:nth-child(even) {background: linear-gradient(35deg, #d16a09, #3d18ac);}

.brief-info a i {transition: all 0.3s;}
.brief-info a:hover i {transform: translateX(4px);}

/*********************************************************
    MediCare Pro Solutions Begin Here
*********************************************************/
.pro-solutions {
    margin-bottom: 60px;
    padding: 0 6%;
}

.pro-solutions h2 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 34px;
    font-weight: 500;
    background: var(--commonHeadingColor);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    text-align: center;
}

.pro-solutions .owl-carousel .owl-stage {
    display: flex;
    padding: 30px 0;
}

.solutions-slider {
    height: -webkit-fill-available;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.5s ease;
}

.solutions-slider:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) scale(1.03);
}

.solutions-slider img {
    border: 1px solid #f3f3f3;
    border-radius: 6px;
}
.solution-info {padding: 10px;}

.solution-info h3 {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000393;
    margin-top: 8px;
}

.solution-info p {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    color: #202020;
}

.solution-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #021a7e;
    transition: all 0.3s;
}

.solution-info a:hover {
    gap: 9px;
    color: var(--orange);
}

.solution-info a i {
    color: #9137F8;
    transition: all 0.3s;
}
.solution-info a:hover i {color: var(--red);}

/*********************************************************
    Video Section Begin Here
*********************************************************/
.video {
    display: flex;
    align-items: center;
    gap: 70px;
    background: linear-gradient(90deg, #8f4545, #3a3c79);
    padding: 100px 12%;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

.video::before {
    content: '';
    width: calc(100% + 20px);
    height: 120px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -119px;
    transform-origin: left top;
    transform: rotate(357deg);
}

.video-icon {width: 90px;}
.video-icon a img {transition: all 0.4s;}
.video-icon a:hover img {transform: scale(1.06);}

.video-info {
    width: calc(100% - 160px);
    padding: 15px 0;
    position: relative;
}

.video-info::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -35px;
}

.video-info .playButton a {
    font-size: 14px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.video-info .playButton a:hover {color: var(--orange);}

.video-info h3 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 35px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.video-info p {
    font-size: 17px;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 20px;
}
.video-info p .bold {font-weight: 500;}

/* Video fade transition */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*********************************************************
    Testimonials Begin Here
*********************************************************/
.testimonial {
    /* background-image: linear-gradient(to bottom, #1C3C4B, #4A7183); */
    padding: 50px 4%;
    margin-bottom: 70px;
}

.testimonial h2 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 34px;
    font-weight: 500;
    background: var(--commonHeadingColor);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial .owl-stage {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}
.testimonial .owl-stage .owl-item {padding: 10px;}

.testimonial-slider {
    background-color: #fff;
    padding: 70px 35px;
    padding-bottom: 40px;
    border-radius: 10px;
    height: -webkit-fill-available;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-prof {
    position: absolute;
    top: -50px;
    left: calc(50% - 25px);
    border: 1px solid #2C0F4F;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-image: url(../img/testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.testimonial-slider p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #2C0F4F;
}

.testimonial-slider h6 {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2C0F4F;
    margin-bottom: 0;
    padding-left: 15px;
    position: relative;
}

.testimonial-slider h6::before {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #b799db;
    position: absolute;
    top: 50%;
    left: 0;
}


/*********************************************************
    Hospital at a Glance Begin Here
*********************************************************/
.glances {
    padding: 0 3.5%;
    margin-bottom: 70px;
    text-align: center;
}

.glances h2 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 34px;
    font-weight: 500;
    background: var(--commonHeadingColor);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}

.glances-gallery {
    display: flex;
    gap: 9px;
}

.gall-left {width: calc(37% - 6px);}
.gall-middle {width: calc(37% - 6px);}
.gall-right {width: calc(26% - 6px);}

.gall-left, .gall-middle, .gall-right {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/*********************************************************
    Page Content Section
*********************************************************/
.pages-block {background: linear-gradient(90deg,#fff7ed, #eff6ff);}

.pages-main-content {
    max-width: 75%;
    margin: 0 auto;
    padding: 50px 0;
}
.page-section {scroll-margin-top: 100px;}

.pages-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.pages-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.pages-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}
.pages-card:hover .image-container img {transform: scale(1.05);}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(4 5 25 / 73%), rgb(1 8 41 / 43%));
    display: flex;
    align-items: center;
    padding: 32px;
}

.pages-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}
.page-content {padding: 32px;}

.page-content > h1 {
    font-size: 2.15rem;
    line-height: 2.5rem;
    font-weight: 800;
    background-image: linear-gradient(to right, #7e88d2, #c94545);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-content > h1::before {
    content: "";
    width: 6rem;
    height: 0.25rem;
    background-image: linear-gradient(to right, #7e88d2, #c94545);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 10px;
}

.page-text {color: #374151;}

.page-text h1, .page-text h2, .page-text h3, .page-text h4, .page-text h5, .page-text h6 {
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 10px;
}
.page-text h1, .page-text h2, .page-text h3 {margin-bottom: 13px;}

.page-text h1 {font-size: 24px;}
.page-text h2 {font-size: 22px;}
.page-text h3 {font-size: 20px;}
.page-text h4 {font-size: 18px;}
.page-text h5 {font-size: 17px;}
.page-text h6 {font-size: 16px;}

.page-text p, .page-text ul, .page-text ol {
    font-size: 16px;
    margin-bottom: 25px;
}

.page-text ul, .page-text ol {padding-left: 35px;}
.page-text ul li {list-style: disc;}
.page-text ul ul li {list-style: circle;}
.page-text ol li {list-style: decimal;}

.page-text ul li, .page-text ol li {margin-bottom: 7px;}

.page-text table {
    width: 100%;
    margin-bottom: 25px;
}

.page-text table td, .page-text table th {
    border: 1px solid #cacaca;
    font-size: 16px;
    padding: 10px;
}

/*********************************************************
    Our Team Section
*********************************************************/
.leadership {
    background: linear-gradient(to top right, #F9F3FC, #F9FBFF);
    padding-top: 50px;
    padding-bottom: 60px;
}

.team-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.single-team-profile {
    width: calc(20% - 20px);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ece9e9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s;
    position: relative;
}

.single-team-profile:hover {transform: translateY(-4px);}
.profile-avatar {cursor: pointer;}
.profile-avatar img {width: 100%;}

.profile-details {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(55, 49, 138, 0.5), rgba(136, 15, 1, 0.5)); */
    background-color: rgba(3, 10, 58, 0.45);
    text-align: center;
    padding: 8px;
}

.profile-designation h3 {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 0;
    cursor: pointer;
}

.profile-designation h6 {
    font-style: italic;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 18px;
    margin-bottom: 0;
}

.profile-designation p {
    font-size: 15px;
    font-weight: 400;
    color: rgb(0, 0, 0, 0.6);
    line-height: 18px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 0;
}

.prof-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.prof-social li a {
    display: block;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #373e5a;
    border: 1px solid #373e5a;
    border-radius: 50%;
    transition: all 0.2s;
}

.prof-social li a:hover {
    color: #741f06;
    border-color: #741f06;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transform: scale(1.01);
}

.profile-popup {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}
.profile-popup img {
    max-width: 150px;
    border-radius: 50%;
    border: 4px solid #eee;
}
.profile-popup h2 {
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
}
.profile-popup h5 {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}
.profile-popup p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.6;
}


/*********************************************************
    Careers Form Section Start
*********************************************************/
.career-info {
    width: 100%;
    border-radius: 20px;
    background-image: linear-gradient(45deg, #a855f7, #ec4899, #3b82f6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2px;
    margin-top: 40px;
    margin-bottom: 60px;
    overflow: hidden;
}

.career-info-block {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    padding-bottom: 20px;
}

.career-info-block h2 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to right, #8300ff, #ff0000, #333d4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 13px;
}

.career-info-block h4 {
    font-size: 17px;
    font-weight: 500;
    color: #333336;
    margin-bottom: 40px;
}

.career-info-block p, .career-info-block ul {
    font-size: 16px;
    color: #374151;
    margin-bottom: 30px;
}
.career-info-block p:last-child {margin-bottom: 0;}

.career-info-block ul {
    list-style: disc;
    padding-left: 30px;
}
.career-info-block ul li:not(:first-child) {margin-top: 8px;}

.career-info-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

#career-info-hide {
    display: none;
    margin-top: 30px;
}

#readMore {
    margin-top: 15px;
    text-align: right;
}

#readMore span {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #da3535;
    cursor: pointer;
    transition: all 0.3s ease;
}
#readMore span:hover {color: #1a72ff;}

/*********************************************************
    Apply for Accreditation Section Start
*********************************************************/
.form-block {
    padding-top: 3rem;
    padding-bottom: 7rem;
}

.contact-page {
    background-color: #f8f6ff;
}

.form-block form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.featured-box {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.featured-box-head {
    display: flex;
    gap: 10px;
    padding: 1.5rem;
}

.featured-box-head h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: -0.025em;
    color: #173b82;
    margin-bottom: 0;
}

.personal-info .featured-box-head {background-image: linear-gradient(to right, #eff6ff, #faf5ff);}
.personal-info .featured-box-head svg {color: #2563eb;}
.profile-documents .featured-box-head {background: linear-gradient(to right, #faf5ff, #fdf2f8);}
.profile-documents .featured-box-head svg {color: #9333ea;}
.contact-bg .featured-box-head {background: linear-gradient(to left, #eff6ff, #f0fdf4);}
.contact-bg .featured-box-head svg {color: #16a34a;}

.featured-box-field {
    padding: 1.5rem;
    padding-top: 2rem;
}
.form-group {margin-bottom: 1.5rem;}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.featured-box-field .input-group {
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 8px;
}

.featured-box-field .input-group label {
    font-size: 0.95rem;
    color: #464646;
}

.featured-box-field .input-group .form-check-input {
    border-radius: 0;
    padding: 0.55rem;
}

.featured-box-field .input-group .form-check-input:checked {
    background-color: #67a2fa;
    border-color: #67a2fa;
}

.featured-box-field input,
.featured-box-field textarea,
.featured-box-field select {
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.25rem;
	padding: 0.65rem 0.75rem;
	color: #173b82;
    background-color: #fff;
    border: 1px solid #e3e3e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-box-field input::placeholder,
.featured-box-field textarea::placeholder,
.featured-box-field select::placeholder {color: #7575ad;}

.featured-box-field input:focus,
.featured-box-field textarea:focus,
.featured-box-field select:focus {
    outline: none;
    box-shadow: none;
	color: #173b82;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.featured-box-field input[type='checkbox']:focus {transform: translateY(0);}

.featured-box-field .input-group input:focus {
    box-shadow: none;
    transform: translateY(0);
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-btn button {
    display: block;
    color: #fff;
    background: #145bb8;
    border-radius: 0.5rem;
    border: none !important;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    padding: 0.5rem 2.5rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: all 0.3s;
}

.form-btn button:hover {
    background: rgba(20, 91, 184, 0.9);
	border: none !important;
	outline: none !important;
}

.form-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    background: #fff;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.75rem;
    padding: 0.5rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-btn a svg {
    width: 1rem;
    height: 1rem;
}

.form-btn a:hover {
    color: #000;
    background: #f9fafb;
}

/*********************************************************
    Become a Member Terms and Conditions Section Start
*********************************************************/
.full-profile {
    position: fixed;
    top: 0;
    left: -40px;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: 0;
    transition: all 0.3s;
}

.full-profile.active {
    opacity: 1;
    visibility: visible;
    left: 0;
    z-index: 99999;
}

.full-profile .prof-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.full-profile-info {
    border-radius: 5px;
    background-color: #fff;
    width: 75%;
    max-height: 90%;
    overflow-y: auto;
    z-index: 9;
    padding: 1.5rem;
    position: relative;
}

.full-profile-info::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
}

.full-profile-info::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
}
.full-profile-info::-webkit-scrollbar-thumb:hover {background: #ccc;}

.closeProf {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
}

.closeProf i {
    color: #666666;
    border: 1px solid #666666;
    background-color: transparent;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.closeProf i:hover {
    color: #0465cc;
    border-color: #0465cc;
    background-color: rgba(4, 101, 204, 0.1);
}

.full-profile-info h3 {
    font-size: 20px;
    color: #a33600;
    margin-bottom: 10px;
}

.full-profile-info h6 {
    font-size: 17px;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 10px;
}

.full-profile-info ol li,
.full-profile-info ul li,
.full-profile-info p {
    font-size: 16px;
    color: rgba(0, 0, 0, .7);
}

.full-profile-info p a {
    text-decoration: underline;
    color: rgba(0, 0, 0, .7);
}
.full-profile-info p a:hover {color: #0d6efd;}

.full-profile-info ol, .full-profile-info ul {
    list-style: auto;
    padding-left: 25px;
    margin-bottom: 20px;
}

#termsConditions {
    color: #0d6efd;
    cursor: pointer;
}

/*********************************************************
    Contact Us Section Start
*********************************************************/
.contact-page-block {
    display: flex;
    gap: 40px;
}

.contact-information {
    width: calc(45% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.single-contact-info {
    width: 100%;
    background: white;
    padding: 25px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.1);
    border-top: 3px solid #008080;
    transition: all 0.3s ease;
}

.single-contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.2) !important;
}

.single-contact-info h5 {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4B0082;
    margin-bottom: 8px;
}

.single-contact-info i {
    color: #008080;
    font-size: 2rem;
    margin-bottom: 10px;
}

.single-contact-info:nth-child(2) {border-color: #4B0082;}
.single-contact-info:nth-child(2) i {color: #4B0082;}
.single-contact-info:nth-child(3) {border-color: #8B4513;}
.single-contact-info:nth-child(3) i {color: #8B4513;}

.single-contact-info p {
    color: #313131;
    font-size: 1rem;
    margin-bottom: 0;
}

#contactForm {
    width: calc(55% - 20px);
    background: #f8f6ff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(75, 0, 130, 0.04);
}

#contactForm .featured-box-field input {padding: 0.75rem 0.75rem;}
#contactForm .featured-box {border-radius: 10px;}

/*********************************************************
    Gallery Begin Here
*********************************************************/
.gallery-block {
    background-color: #f1f7ff;
    padding-top: 35px;
    padding-bottom: 50px;
}

.projects-hd {
    font-family: "Libre Baskerville", serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(175, 19, 32, 0.03), rgba(197, 197, 197, 0.03), rgba(0, 3, 190, 0.03));
    color: #0841ac;
    border-radius: 5px;
    padding: 20px;
    margin-top: 60px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    /* aspect-ratio: 1; */
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f7fafc;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {transform: scale(1.1);}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-overlay {opacity: 1;}

.gallery-title {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/*********************************************************
    Donate Now Begin Here
*********************************************************/
.donate-block {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
}

.donate-form {
    margin-top: 70px;
    margin-bottom: 70px;
}

.donate-form .personal-info .featured-box-head {background-image: linear-gradient(to right, #d2e6ff, #f1caff);}
.donate-form .personal-info .featured-box-head i {
    color: #2563eb;
    font-size: 1.35rem;
}

.donate-form .form-btn button {
    font-weight: 500;
    padding: 0.65rem 2.5rem;
}

.donate-content {
    max-width: 800px;
    margin-top: 30px;
    margin-bottom: 70px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#donateInfo-block {display: none;}
#success_msg .alert {padding: 1rem;}
#success_msg .alert-success {background: #e3f1eb;}

.donate-header {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.donate-header h1 {
    font-size: 2.25em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.donate-header p {
    font-weight: 300;
}

.donate-info {
    padding: 40px;
    text-align: center;
}

.donate-info h2 {
    font-size: 22px;
    color: #424141;
    margin-bottom: 5px;
}

.bank-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #3498db;
    text-align: left;
}

.bank-details p {
    font-size: 1.2em;
    margin: 10px 0;
    color: #2c3e50;
}

.bank-details strong {
    color: #3498db;
}

.donate-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*********************************************************
    Projects Section Begin Here
*********************************************************/
.projects-block {
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.projects-box {
    padding-top: 70px;
    padding-bottom: 70px;
}

.project-section {
    background: #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border: 1px solid #bfdbfe;
    border-radius: 1rem;
    margin-top: 40px;
    padding: 40px;
    transition: all 0.45s;
}
.projects-box .project-section:first-of-type {margin-top: 0;}

.project-section:hover {transform: translateY(-5px) scale(1.005);}

.project-grid {
    display: flex;
    gap: 4rem;
    /* align-items: center; */
}
.project-content {width: 65%;}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.project-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits {margin: 2rem 0;}
.action-btn {margin-top: 25px;}

.action-btn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    background: #fff;
    color: #64748b;
    border: 1px solid #b0c1d6;
    transition: all 0.4s ease;
}

.action-btn a:hover {
    border-color: #3b4657;
    color: #3b4657;
    transform: translateY(-3px);
}

.benefits h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.project-content ul, .project-content ol {
    padding-left: 30px;
    margin-bottom: 30px;
}
.project-content li ol, .project-content li ul {margin-bottom: 0;}
.project-content ul {list-style: disc;}
.project-content ol {list-style: decimal;}
.project-content li {margin-bottom: 10px;}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #4b5563;
}

.benefits-list i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.project-image {
    position: relative;
    width: 35%;
}

.project-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .project-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
} */

.stat-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card-1 {
    bottom: -24px;
    left: -24px;
}

.stat-card-2 {
    top: -24px;
    right: -24px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card-1 .stat-icon {
    background: #dbeafe;
    color: #2563eb;
}

.stat-card-2 .stat-icon {
    background: #dcfce7;
    color: #16a34a;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.project-gallery-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.project-gallery-item:hover img {transform: scale(1.05);}

.project-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.project-gallery-item:hover .project-gallery-overlay {transform: translateY(0);}

.project-gallery-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
}

/*********************************************************
    Footer Begin Here
*********************************************************/
.footer {
    display: flex;
    gap: 30px;
    background-color: #3C447D;
    padding: 60px 8%;
}

.footer h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f6fbff;
    margin-bottom: 20px;
}

.footer-menu {
    font-family: "Noto Sans Arabic", sans-serif;
    width: calc(75% - 15px);
    display: flex;
    gap: 30px;
}
.single-footer-menu {width: calc(33.33% - 20px);}

.single-footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.single-footer-menu ul li a {
    font-size: 16px;
    color: #fafdff;
    transition: all 0.3s;
}

.single-footer-menu ul li a:hover {color: var(--orange);}
.footer-address {width: calc(25% - 15px);}

.footer-social-media {
    display: flex;
    gap: 10px;
}

.footer-social-media a  {
    font-size: 36px;
    color: #fafdff;
    transition: all 0.3s;
}

.footer-social-media a:hover {
    transform: translateY(-4px);
    color: var(--orange);
}

.footer-address ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top:  15px;
}

.footer-address ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    color: #fafdff;
}

.copyright {
    font-family: "Noto Sans Arabic", sans-serif;
    background-color: #1D2B30;
    padding: 15px 5%;
    padding-bottom: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright ul {
    display: flex;
    justify-content: center;
    gap: 21px;
}
.copyright ul li {position: relative;}

.copyright ul li+::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fafdff;
    position: absolute;
    top: 0;
    left: -10px;
}

.copyright ul li a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    color: #fafdff;
    transition: all 0.3s;
}
.copyright ul li a:hover {color: var(--orange);}

.copyright p {
    font-size: 13px;
    font-weight: 400;
    color: #fafdff;
    margin-bottom: 0;
}

/*********************************************************
    Start Application Button Section Start
*********************************************************/
#start-button-container {
    position: fixed;
    left: 50%;
    bottom: 40px;
    z-index: 99999;
    width: max-content;
    transform: translate(-50%, 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

#start-button-container.active {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    transition: all 1s;
}

.start-application-btn {
    background: linear-gradient(135deg, #34b7ff 0%, #001eef 100%);
    color: white;
    border: none !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(107, 142, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.start-application-btn:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(107, 142, 255, 0.5);
    background: linear-gradient(135deg, #001eef 0%, #34b7ff 100%);
}

.start-application-btn:active {transform: translateY(-1px) scale(1.02);}
.start-application-btn svg {transition: transform 0.3s ease;}
.start-application-btn:hover svg {transform: translateX(4px);}

/*********************************************************
  WhatsApp Section Start
*********************************************************/
.whatsapp-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 100px;
  left: 40px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: rgb(37, 211, 102);
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  transition: all 0.3s linear;
}

.whatsapp-chat:hover {
  background-color: #fff;
  border-color: rgb(37, 211, 102);
}

.whatsapp-chat i {
  font-size: 36px;
  color: #fff;
  padding-top: 2px;
}

.whatsapp-chat:hover i {
  color: #25d366;
  transition: all 0.3s linear;
}

/*********************************************************
    Scroll To Top Begin Here
*********************************************************/
#scrollTop {
    position: fixed;
    right: 30px;
    bottom: 0;
    z-index: 9999;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    background-color: #fff;
    color: #666666;
    border: 2px solid #666666;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0;
}

#scrollTop.active {
    bottom: 30px;
    opacity: 1;
}

#scrollTop:hover {
    color: #353535;
    border-color: #353535;
}

#scrollTop:hover i {
    animation-name: animArrow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes animArrow {
    0% {transform: translateY(0);}
    50% {transform: translateY(-3px);}
    100% {transform: translateY(0);}
}