/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #ed8e0046;
}

html::-webkit-scrollbar-thumb {
    background-color: #D2B450;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

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

body {
    font-size: 16px;
    font-family: 'Helvetica';
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #D2B450;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FilsonProRegular';
    font-weight: normal;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 70px;
}
.text-white{
	color:#fff !important;
}

/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 60%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #15222B;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #15222B;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-50deg, #d2b450, #d2b4501c), url(../img/location-img3.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.right {
    padding: 30px;
    text-align: left;
    .title{
        font-size: 44px;
        margin-bottom: 10px;
    }
}
.fc{
    width: 47px;
    height: 47px;
    background: #53BB9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px rgb(48 111 94);
    img{
        animation: ring 1s infinite ease-in-out;
        filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(254deg) brightness(104%) contrast(100%);
    }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}

.fixed-btn {
    position: fixed;
    right: 10px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 40px;
}
.fc,.fw{
    &:hover{
        transform: scale(1.1);
    }
}

/* Ultra Modern View Transitions Collection 2025 */
/* Choose any one animation set by uncommenting it */

/* Enable view transitions for navigation */
@media(prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

/* Basic settings for all animations */
::view-transition-group(*) {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}
/* ========================
   3. PARALLAX DEPTH TRANSITION (Uncomment to use)
   ======================== */

::view-transition-old(root) {
    animation: parallaxDepthOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::view-transition-new(root) {
    animation: parallaxDepthIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes parallaxDepthOut {
    0% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    50% {
        transform: perspective(1000px) translateZ(-300px) rotateX(-15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(0.7);
    }
    100% { 
        transform: perspective(1000px) translateZ(-600px) rotateX(-30deg);
        opacity: 0;
        filter: blur(15px) brightness(0.3);
    }
}

@keyframes parallaxDepthIn {
    0% { 
        transform: perspective(1000px) translateZ(600px) rotateX(30deg);
        opacity: 0;
        filter: blur(15px) brightness(1.5);
    }
    50% {
        transform: perspective(1000px) translateZ(300px) rotateX(15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(1.2);
    }
    100% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 80px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
p {
color: #212121;
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 161.111%;
strong{
    font-weight: normal;
    font-family: "Helvetica bold";
}

}
strong{
    font-weight: normal;
    font-family: "Helvetica bold";
}
.dec-italic{
    color: #2D2D2D;
    font-family: 'PlayfairDisplay Italic';
    font-size: 23px;
    font-style: italic;
    font-weight: normal;
    line-height: 173.913%;
}
.sub-title{
color: #D2B450;
font-family: "Helvetica bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 31px;
text-transform: uppercase;
display: inline-block;
position: relative;
margin-bottom: 20px;
&:after,
&:before{
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    background-color: #D2B450;
    left: -46px;
    top: 50%;
    transform: translateY(-50%);
}
&:after{
    left: auto;
    right: -46px;
}
}
.title-md{
color: #192741;
font-family: "Helvetica bold";
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 140.909%;
margin-bottom: 10px;
}  
.title {
    color: #1A1A1A;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 63px;
    margin-bottom: 45px;
    text-transform: uppercase;
}
.section-title {
    color: rgb(32, 32, 32);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 106.667%;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}
  
.small-line {
    width: 68px;
    height: 2px;
    background-color: rgb(237, 143, 0);
    display: inline-block;
    margin-left: 6px;
    margin-top: 20px;
    margin-bottom: 24px;
}

  
.primary-btn {
    color: #151515;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    font-family: 'Helvetica Bold';
    padding: 18px 30px;
    border-radius: 50rem;
    border: 1px solid #F7D86F;
    background: #F7D86F;
    transition: all 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

  
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    scale: 1 0;
    left: 0;
    background: #ffffff;
    z-index: -1;
    transition: all .35s;
    transform-origin: bottom;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #000;
}

.primary-btn:focus {
    color: currentColor;
}
.outline-btn{
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    &::after,
    &::before{
        background-color: #F7D86F;
    }

}
.container {
    max-width: 1400px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: rgb(48, 111, 94);
}

form .btn-group {
    justify-content: center;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

/* Custom Cursor - Fixed Version */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #D2B450; /* Simplified gradient */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    mix-blend-mode: difference;
    will-change: transform; /* Performance optimization */
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(230, 157, 81, 0.8); /* Added alpha for better trail effect */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity; /* Performance optimization */
}

.cursor-glow {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(210, 180, 80, 0.6); /* Added alpha for subtle glow */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse 2s infinite;
    will-change: transform; /* Performance optimization */
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        opacity: 0.4; /* Slightly more visible */
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.15; 
    }
    100% { 
        transform: scale(1); 
        opacity: 0.4; 
    }
}

/* Enhanced Hover effects */
.cursor.hover {
    transform: scale(2.5);
    background: #D2B450;
    box-shadow: 0 0 15px rgba(210, 180, 80, 0.6); /* Added glow on hover */
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Faster hover response */
}

.cursor-glow.hover {
    transform: scale(2);
    border-color: rgba(210, 180, 80, 0.9);
    border-width: 3px; /* Thicker border on hover */
    animation-duration: 1s; /* Faster pulse on hover */
}

/* Enhanced Particle effect */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #E69D51;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    box-shadow: 0 0 6px rgba(230, 157, 81, 0.8); /* Added glow to particles */
    will-change: transform, opacity; /* Performance optimization */
}

/* Additional smooth animations */
.cursor,
.cursor-glow,
.cursor-trail {
    backface-visibility: hidden; /* Prevent flickering */
    transform-style: preserve-3d; /* Smoother 3D transforms */
}

/* Mobile fallback - hide cursor on touch devices */
/* @media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-glow,
    .cursor-trail,
    .particle {
        display: none !important;
    }
} */
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
.textarea{
    font-family: 'Helvetica';
}
/*******************************
	Menu
*******************************/
.topbar{
    position: relative;
    background: #F7D86F;
}
.topbar a{
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    gap: 6px;
    img{
        filter: brightness(0) saturate(100%) invert(49%) sepia(57%) saturate(486%) hue-rotate(113deg) brightness(94%) contrast(83%);
    }
    &:hover{
        color: #2e2e2e;
    }
}
.topbar .container{
    position: relative;
}
.call-email{
    font-size: 17px;
    color: rgb(255, 255, 255);
    line-height: inherit; 
    padding: 5px 0; 
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}
.top-social{
    display: flex;
    gap: 8px;
    a{
        width: 31px;
        height: 30px;
        border: 1px solid #ffffff;
        background-color: #31564c;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .7s;
        &:hover{
            background-color: #d2b45000;
            
        }

    }
}
.cal-btn {
    color: #1F2A44;
    font-family: 'Helvetica Bold';
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 90px;
}
.header-area {
    background-color: #306F5E;
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area.sticky {
    background: #306F5E;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-menu {
    display: flex;
    align-items: center;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;

}

.main-menu {

}

.logo {
    width: auto;
}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 8px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 30px 6px;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

  
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 7px;
    width: 25px;
    height: 1px;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #F7D86F;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 34px;
    right: -8px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
}


#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
    display: block;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a {
    color: #fff;
    background-color: #D2B450;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
    }

    .logo {}

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);

    }

    #menu .main-menu ul li {
        width: 100%;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 28px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #306F5E;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #306F5E;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
       top: 25px;
        right: 27px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}


/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
}

.slider-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-item {
    position: relative;
    padding-block: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    .outline-btn{
    border: 2px solid #306F5E;
    background: transparent;
    color: #306F5E;
    &::after,
    &::before{
        background-color: #306F5E;
    }
    &:hover{
        color: #fff;
    }

}
}

.banner-content {
    width: 46%;
    margin-inline: auto;
    text-align: center;
    .btn-group{
        justify-content: center;
    }
}

.banner-item .container {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
}


.banner-item h1 {
    font-size: 60px;
    line-height: 113%;
    color: #000000;
    margin-bottom: 20px;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.banner-item p {
    color: #000000;
font-family: "Helvetica Bold";
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 145%;
    margin-bottom: 22px;
}

.btn-group {
    display: flex;
    gap: 25px;
}

.slick-dots li button {
    padding: 5px;
    border: 0;
    background-color: #ffffff00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    outline-offset: 3px;
    margin:0;
}
.slick-dots li.slick-active button {
    background:#D2B450;
    border-color: #D2B450;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button:before {
    opacity: 0;
    color: white;
}

.slick-dots li button:before {
    opacity: 0;
    color: white;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 50px;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* ***** About ***** */
.about-us{
    .container{
        background: #f0f0f0;
        padding-inline: 50px;
    }
}
.who-we-are-img {
    position: relative;
    z-index: 1;
    margin-bottom: -3px;
}

.who-we-are-img img {
    width: 100%;
}

/* ***** Counter ***** */
.counter{
    .row .col-6:nth-child(2n){
        .counter-item{
            background-color: rgb(83, 187, 159);
        }
    }
}
.counter-item {
    position: relative;
    text-align: center;
    background-color: rgb(247, 216, 111);
    height: 100%;
    padding: 30px 20px;
    transition: all .5s;
    &:hover{
        background-color: #D2B450;
        color: #fff;
        box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
        h3,p{
            color: #fff;
        }
    }
}

.counter-item h3 {
    color: #1F2A44;
font-family: "Helvetica Bold";
font-size: 54px;
font-style: normal;
font-weight: normal;
line-height: 33px;
margin-bottom: 14px;
transition: all .5s;
}

.counter-item p {
color: #212121;
font-family: "Helvetica";
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 28px;
transition: all .5s;
}

.counter {
    padding: 80px 0;
    padding-top: 20px;
    transition: all .5s;
}


/* ***** dONATION BANNER ***** */
.donation-banner{
    .container{
        position: relative;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-btn {
            display: block;
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translate(-50%, -50%);
        }
    }
}

/* ***** Services ***** */
.project{
        background-color: rgb(48, 111, 94);
    background-image: url(../img/line.webp);
    border-radius: 20px;
    .section-title,p{
        color: #fff;
    }
}
.project-social{
    display: flex;
    align-items: center;
    gap: 10px;
}
.fb, .yt, .ins{
    background-color: #3b5998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    &:hover{
        background-color: #2d4373;
    }
}
.yt{
    background: #FF0000;
    &:hover{
        background: #c30101;
    }
}
.ins{
    background: linear-gradient(to right, #833ab4,#fd1d1d,#fcb045);
    &:hover{
        background: linear-gradient(to left, #833ab4,#fd1d1d,#fcb045);
    }
}
.project-img{
    position: relative;
    img{
        border-radius: 20px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }

}
.rotate-text{
    position: absolute;
    bottom: -86px;
    z-index: 9;
    right: 0;
    text-transform: uppercase;
    img{
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 0;
    }
    &:hover{
        .textcircle{
            animation-play-state: running;
        }
    }
    span{
        width: 80px;
        height: 80px;
        padding: 20px;
        background: #F7D86F;
        position: absolute;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s;
    }
    &:hover span{
        background: #069c74;
        color: #fff;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}
.textcircle {
    position: relative;
    display: block;
    width: 210px;
    height: 210px;
    animation: rotate 10s linear infinite;
}
.textcircle text {
    font-size: 38px;
    fill: #FFF;
    transition: all 0.5s;
    font-weight: normal;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.highlight {
    background: #EAF1EF;
    padding: 50px;
    text-align: center;
    transition: all .5s;
    p{
        transition: all .5s;
    }
    &:hover{
        background-color: #306F5E;
        color: #fff;
        box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
        h3,p{
            color: #fff;
        }
    }
}
/************************************
    Client
************************************/
img{
    transition: all .5s;
}
.school-box{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    text-align: center;
    z-index: 1;
    transition: all .5s;
    &:hover{
        transform: translateY(-10px);
    }
    .content{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        z-index: 1;
    }
    h3{
        color: #306F5E;
        font-size: 30px;
    }
    h4{
        color: #fff;
        font-size: 24px;
    }
    .qut-big {
    position: absolute;
    right: 12px;
}
}
.cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-yellow{
    background-color: #F7D86F;
}
.bg-green{
    background-color: #306F5E;
}
.school{
    .row{
        .col:nth-child(3){
            .school-box::after{
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, #ffffff, transparent);
                z-index: 0;
            }
        }
        .col:nth-child(4){
            .content{
                padding-inline: 40px;
            }
        }
        .col:nth-child(5){
            .content{
                padding-inline: 40px;
            }
        }
        .col:nth-child(7){
            .content{
                text-align: left;
                padding-inline: 20px;
            }
        }
    }
}
/************************************
    CTA
************************************/
.transfarming{
    background-color: #F8F5E9;
}
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(44, 85, 48, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}


.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.2);
    border-color: rgba(44, 85, 48, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    box-shadow: 0 0 0 6px #F7D86F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(44, 85, 48, 0.3);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover .icon-wrapper::before {
    transform: translateX(100%);
}

.icon {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #1a3d1e;
}

.feature-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #EAF1EF;
    color: #306F5E;
    padding: 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.6s;
    clip-path: polygon(0% 100%, 100% 100%, 50% 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: trianglePulse 2s infinite ease-in-out;
}

.feature-card:hover .feature-highlight {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.feature-card:hover .feature-highlight::before {
    opacity: 0;
}

.feature-highlight-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.feature-card:hover .feature-highlight-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes trianglePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 1;
    }
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover .feature-highlight::before {
    left: 100%;
}
.img-box {
    position: relative;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }
}
.students-aims{
    background-color: #F7D86F;
    color: #306F5E;
    position: absolute;
    padding: 10px 20px;
    text-align: center;
    width: 132px;
    bottom: 6px;
    right: 2px;
    h4{
        margin: 0;
        font-size: 40px;
        font-weight: normal;
        font-family: 'Helvetica Bold';
    }
    p{
        margin: 0;
        line-height: normal;
    }
}
.donation-section{
    background-image: url(../img/donation-img2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    .section-title{
        text-align: center;
    }
}
.donation-container {
  background-color: #fdf7e9;
  padding: 40px 20px;
  position: relative;
  border-radius: 20px 20px 65px 20px;
}
.flag{
    position: absolute;
    right: -52px;
    bottom: -50px;
}

/* Text */
.donation-subtitle {
  color: #306F5E;
  font-style: italic;
  font-size: 30px;
  margin-bottom: 5px;
  text-align: center;
}

.donation-benefits {
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 25px;
}

.donation-benefits ul {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
}

.donation-benefits li {
  margin-bottom: 8px;
  color: #212121;
    font-size: 17px;
}

/* Amount Section */
.donation-section{
.currency-input {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 25px;
    padding: 13px 55px;
    margin: 0 auto 15px;
    box-shadow: 0 0 0 1px #e0e0e0;
    position: relative;
}

.currency {
      color: #ffffff;
    font-size: 19px;
    background: #53BB9F;
    position: absolute;
    left: 0;
    width: 45px;
    height: 100%;
    border-radius: 25px 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 20px;
    text-align: left;
    background: transparent;
    color: #53BB9F;
    font-family: 'Helvetica Bold';
    font-weight: normal;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.amount {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 14px 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  font-family: "Helvetica Bold";
  color: #333333;
}

.amount:hover {
  background-color: #ffffff;
  color: #53BB9F;
  border-color: #53BB9F;
}

.amount.active {
  background-color: #53BB9F;
  color: #fff;
  border-color: #53BB9F;
}


/* Donate Button */
.donate-btn {
  background-color: #53BB9F;
  color: #fff;
  border: none;
  padding: 16px 30px;
  margin-top: 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #2e6c5a;
}
.dvector {
    position: absolute;
    bottom: -76px;
    left: -34%;
}
}
.director-box{
    display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 70px;
      .profile-card{
     position: relative;
     font-family: sans-serif;
     width: 350px;
     height: 220px;
     background: #fff;
     padding: 30px;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
     margin: 0 25px;
     margin-top: 70px;
   }
   .profile-card{
     border-radius: 10px;
     height: 450px;
   }
   .profile-card .img{
     position: relative;
     width: 100%;
     height: 100%;
     transition: .6s;
     z-index: 99;
   }
   .profile-card .img{
     transform: translateY(-100px);
   }
   .img img{
     width: 100%;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
   }
   .profile-card img{
     border-radius: 10px;
   }
   .caption{
     text-align: center;
     transform: translateY(-120px);
     opacity: 0;
     transition: .6s;
   }
   .profile-card .caption{
     opacity: 1;
   }
   .caption h3{
     font-size: 28px;
   }
   .caption p{
     font-size: 15px;
     color: #000000b9;
     font-family: sans-serif;
     margin: 2px 0 9px 0;
   }
   .caption .social-links a{
     margin-right: 15px;
     transition: .6s;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #1877F2;
     &:hover{
        background-color: #0d47a1;
     }
   }
   
   .social-links {
    display: flex;
    justify-content: center;
}
}
.gallery{
    background-color: #F1F1F1;
}
.gallery-box{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    text-align: center;
    z-index: 1;
    transition: all .5s;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .5s;
    }
    .overlay{
        position: absolute;
        inset: 0;
        background: rgba(48, 111, 94, 0.7);
        opacity: 0;
        transition: all .5s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    &:hover{
        .overlay{
            opacity: 1;
        }
        img{
            transform: scale(1.1);
        }
    }
}
/* Overall Section */
.media-section {
  background: #ffffff;
  position: relative;
}

.media-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184,216,176,0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.media-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,68,0,0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Text Box */
.media-text {
text-align: center;
  padding: 35px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Image Side */
.media-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.media-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(30%) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.media-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Overlay */
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.3));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay-content {
  color: #ffffff;
  padding: 20px;
}

.overlay-content h3 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Play Button */
.play-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  svg{
    animation: cts-pulseBig 2s infinite;
    border-radius: 50%;
  }
}
@keyframes cts-pulseBig {
    0% {
        box-shadow: 0 0 0 0 #E05D41
    }

    70% {
        box-shadow: 0 0 0 30px transparent
    }

    100% {
        box-shadow: 0 0 0 0 transparent
    }
}
.play-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .media-section {
    grid-template-columns: 1fr;
    padding: 50px 6%;
  }

  .overlay-content h2 {
    font-size: 26px;
  }
}







.blog-card {
      border: 1px solid #DEDEDE;
        background: #FFF;
      transition: 0.5s;
      margin-top: 30px;
    }

    .blog-card:hover {
        transform: translateY(-5px);
      h3{
            color: #D2B450;
      }
    }

    .blog-card .image-wrapper {
      position: relative;
        width: 90%;
        margin-inline: auto;
        margin-top: -30px;
    }

    .blog-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .blog-card .date-box {
      position: absolute;
    right: 18px;
    bottom: -43px;
    background: #192741;
    color: #fff;
    text-align: center;
    }

    .date-box span {
      display: block;
      font-size: 21px;
      line-height: 1.2;
    }

    .date-box .day {
          font-size: 48px;
        font-weight: normal;
        line-height: 99%;
        padding-top: 2px;
    }

    .date-box .year {
        background: #F4B32A;
        color: #000;
        margin-top: 4px;
        padding: 6px 14px;
        font-size: 26px;
    }

    .blog-card .content {
      text-align: left;
      padding: 20px;
    }

    .content .tag {
      font-size: 18px;
      padding: 7px 18px;
      border-radius: 60px;
    background: #F2F2F2;
      display: inline-block;
      margin-bottom: 10px;
      color: #000;
    }


.mt-40{
    margin-top: 40px;
}
.map iframe{
    width: 100%;
    border: 0;
    height: 600px;
}

/******************************/

footer {
    background-color: #377464;
    width: 100%;
    padding-top: 60px;
.top-social{
    a{
        background-color: transparent;
        &:hover{
            background-color: #F7D86F;
            transform: scale(1.1);
            img{
                filter: brightness(0) saturate(100%) invert(49%) sepia(64%) saturate(304%) hue-rotate(106deg) brightness(92%) contrast(94%);
            }
        }
    }
}
}
.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 10px;
    width: auto;
}

footer p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 24px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    font-weight: normal;
    position: relative;
    margin-bottom: 15px;
    font-family: "Helvetica Bold";
}

.footer-title:after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #F7D86F;
    display: inherit;
    margin-top: -2px;
}
footer ul li a,
footer p a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 212%;
}
footer ul li a:hover,
.contact-info a {
    color: #F7D86F;
}
.story-list{
    position: relative;
}
.copyright-section{
   background-color: rgb(48, 111, 94);
    background-image: url(../img/line.webp);
}
.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    p{
        margin: 0;
    }
}

.copyright a {
    color: #F5990F;
    text-decoration: underline;
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.story-list{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 10%;
    margin-bottom: 15px;
    img{
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 10px;
    }
    p{
        font-size: 20px;
        font-family: 'FilsonProRegular';
        margin: 0;
        transition: all .5s;
    }
    &:hover{
        p{
            color: #D2B450;
        }
    }
}
.news-video{
    position: relative;
    &:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 10px;
    }
    .img{
        border-radius: 10px;
    }
    .rotate-text {
        top: 50%;
        left: 50%;
        bottom: unset;
        right: unset;
        transform: translate(-50%, -50%);
    span {
        background: #ffffff;
        width: 60px;
        height: 60px;
        padding: 20px;
        img{
            filter: invert(1);
        }
    }
    &:hover{
        span {
            background: #D2B450;
        }
    }
}
.textcircle {
    width: 170px;
    height: 170px;
}
}
/*******************************
  Inner Page
********************************/
.inner-banner{
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    }
    .banner-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -4px;
    }
    .container {
        position: absolute;
        z-index: 1;
        inset: 0;
        display: flex;
        align-items: center;
    }
    h1{
        color: #FFF;
        font-family: 'FilsonProRegular';
        font-size: 61px;
        font-style: normal;
        font-weight: 400;
        line-height: 69px; 
        margin-bottom: 19px;
    }
    p{
        color: #FFF;
        font-family: "Helvetica Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 145%;
    }
    .banner-content {
    width: 44%;
    }
}
.contact{
    .form-box {
    box-shadow: 0 4px 17px 0px #0000002e;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
}
    .primary-btn:hover{
        color: #fff;
        background: #1F2A44;
    }
    .contact-box h3 {
        color: #000;
        font-family: 'FilsonProRegular';    
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .contact-box p {
      margin: 10px 0;
      line-height: 1.5;
      margin-bottom: 8px;
      color: #484848;
      clear: both;
      strong{
        color: #306f5e;
        font-size: 22px;
        line-height: 31px;
        display: block;
        margin-bottom: 16px;
      }
    }

    .contact-box a {
      color: #484848;
      text-decoration: none;
      &:hover{
        color: #306f5e;
      }
    }

    .contact-box .icon {
      margin-right: 10px;
        margin-right: 10px;
        float: left;
        height: 50px;
        margin-top: 5px;
    }
}
.follow{
    border-top: 1px solid #E2E0E0;
    margin-top: 30px;
    padding-top: 30px;
    .top-social a{
        background-color: #000;
        border-radius: 50%;
        width: 37px;
        height: 37px;
        &:hover{
            background-color: #D2B450;
            border-color: #D2B450;
        }
    }
}
.mt-30{
    margin-top: 30px;
}
.other-branches{
    padding-top: 30px;
}
.branch-card {
            border-radius: 6px;
            background: #FFF;
            box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.19);
            padding: 40px 20px;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            .location-icon{
                background: #1F2A44;
                img{
                    transform: rotateY(180deg);
                }
            }
        }

        .location-icon {
            width: 96px;
            height: 96px;
            background: #FFF;
            filter: drop-shadow(0 4px 19px rgba(0, 0, 0, 0.12));
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .5s;
        }

        .branch-title {
            color: #212121;
font-family: "Helvetica Bold";
font-size: 26px;
font-style: normal;
font-weight: normal;
line-height: 26px;
margin-bottom: 7px;
        }

        .service-title {
            color: #D2B450;
            font-size: 18px;
            font-family: "Helvetica Bold";
            font-weight: normal;
            margin-bottom: 1px;
        }

        .address {
            color: #484848;
            font-size: 18px;
            line-height: 155.556%;
            margin: 0;
        }
.blog-item{
    position: relative;
    &:hover{
        h3{
            color: #D2B450;
        }
        .blog-img{
        img{
            transform: scale(1.1);
        }
    }
    }
    
}
.blog-big-content{
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 50px;
    z-index: 2;
    h2{
        color: #FFF;
        font-family: 'FilsonProRegular';
        font-size: 52px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        margin-bottom: 11px;
        &:hover{
            color: #D2B450;
            text-shadow: 0 0 1px #000000;
        }
    }
    .blog-date{
    color: #fff;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    span{
        position: relative;
        &::before{
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            background: #ff0000;
            border-radius: 50%;
        }
    }
}
    p{
        color: #fff;
        margin-bottom: 0;
    }
    
}
.blog-img{
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    a{
        display: block;
        position: relative;
        z-index: 1;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -4px;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 36.06%, rgba(0, 0, 0, 0.00) 100%);
        border-radius: 14px;
    }
}
.blog-tags{
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    .tag{
        border-radius: 30px;
        background: rgba(217, 217, 217, 0.209);
        backdrop-filter: blur(35.5px);
        color: #FFF;
        padding: 17px 18px;
        font-family: "Helvetica Bold";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 16px;
        text-transform: uppercase;
        display: inline-block;
    }
}
.blogs{
    .col-lg-4 {
        .blog-img{
            &::after{
                display: none;
            }
        }
    }
}
.blog-content{
    padding: 14px 20px;
    background: #ffffff;
    margin-top: -20px;
    padding-top: 40px;
    box-shadow: 0 6px 17px 0 #0000001f;
    border-radius: 10px;
    .blog-tags{
        margin-bottom: 14px;
        gap: 7px;
        .tag{
           border-radius: 6px;
            background: #306f5e;
            padding: 5px 15px;
            font-size: 18px;
            color: #ffffff;
            text-transform: unset;
            font-family: "Helvetica";
        }
    }
    h3{
        color: #1A1A1A;
        font-family: 'FilsonProRegular';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.333%;
        margin-bottom: 16px;
    }
    p{
        margin-bottom: 15px;
    }
    .blog-date{
        color: #7D7B7A;
    }
    .primary-btn{
        padding: 16px 25px;
    }
}
.blog-details{
    .blog-title{
        color: #212121;
font-size: 56px;
line-height: 107.143%;
margin-bottom: 9px;
    }
.details-tag{
    color: #D2B450;
font-size: 22px;
line-height: 20px;
text-transform: uppercase;
margin-bottom: 9px;
}
.blog-date{
    color: #7D7B7A;
}
.blog-details-img {
    aspect-ratio: 3 / 1.25;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
h2{
color: #212121;
font-size: 36px;
line-height: 180.556%;
text-transform: capitalize;
margin-bottom: 16px;
}
ul{
    margin-bottom: 22px;
    list-style-type: disc;
    padding-left: 22px;
    font-size: 18px;
    line-height: 161.111%;
}
h3{
color: #212121;
font-size: 30px;
line-height: 65px;
text-transform: capitalize;
margin-bottom: 16px;
}
ol{
    margin-bottom: 22px;
    list-style-type: decimal;
    padding-left: 22px;
    font-size: 18px;
    line-height: 161.111%;
}
}
.sidebar-service{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    margin-bottom: 30px;
    h3{
        color: #212121;
        font-size: 24px;
        font-style: normal;
        line-height: 32px;
        text-transform: capitalize;
        margin: 0;
    }
}
.category-list{
font-family: Helvetica;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px;
padding-left: 0!important;
margin: 0 !important;

a{
    color: #454545;
}
li{
    margin-bottom: 6px;
    position: relative;
    list-style: none;
    transition: all .5s;
    &::before{
        content: '';
        background-image: url(../img/list-arrow.webp);
        width: 20px;
        height: 20px;
        transform: translateY(4px);
        display: inline-block;
        background-size: 14px;
        background-repeat: no-repeat;
    }
&:hover{
    transform: translateX(5px);
    &::before{
        filter: brightness(0) saturate(100%) invert(93%) sepia(51%) saturate(7037%) hue-rotate(315deg) brightness(87%) contrast(87%);
    }
        a{
            color: #D2B450;
        }
    }
}
}
.recent-post-list{
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 8px;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    &:hover{
        .recent-post-content{
        h4{
            color: #D2B450;
        }
    }
    }
    img{
        width: 119px;
        height: 116px;
        object-fit: cover;
        border-radius: 6px;
    }
    .recent-post-content{
        p{
        color: #76797B;
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 6px;
        }
        h4{
           color: #000;
            font-size: 18px;
            line-height: 144.444%;
            margin-bottom: 9px;
        }
        .read-more{
            color: #D2B450;
font-family: 'FilsonProRegular';
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
text-transform: uppercase;
        }
    }
}
.sidebar-form {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    h3{
        color: #212121;
font-size: 26px;
font-style: normal;
line-height: 65px;
text-transform: capitalize;
    }
    .form-control{
        border-radius: 10px;
border: 1px solid #E2E0E0;
    }
    .primary-btn{
        border: 0;
        padding: 12px 40px;
        text-transform: capitalize;
        font-family: "Helvetica";
        &:hover{
            border-radius: 12px;
            color: #000;
        }
    }
}
.pagination{
    border-top: 1px solid #E2E0E0;
    padding-top: 30px;
    margin-top: 30px;
    .row .col-md-6:last-child{
        text-align: right;
    }
h4{
    color: #212121;
font-family: "Helvetica Bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 26px;
margin-bottom: 12px;
}
a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #212121;
    font-size: 18px;
    line-height: 177.778%;
    &:hover{
        color:rgb(210, 180, 80);
    }
    img{
        width: 136px;
        height: 110px;
        object-fit: cover;
        border-radius: 6px;
    }
    span{
        width: 65%;
    }
}
}
.highlights{
    border: 2px solid #D2B450;
    background: #F6F6F6;
    padding: 18px 30px;
    margin-top: 40px;
}



 .tabs-section {
      
    /* Left Tabs */
    .tabs-list {
      flex: 0 0 250px;
      position: sticky;
      top: 20px;
      align-self: flex-start;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .tabs-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .tabs-list li {
      padding: 15px 20px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: background 0.3s;
    }

    .tabs-list li.active,
    .tabs-list li:hover {
      background: #306F5E;
      color: #fff;
    }

    /* Right Content */
    .tabs-content {
      flex: 1;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 20px;
      h2{
        color: #212121;
        font-family: "Helvetica Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 26px;
        margin-bottom: 12px;
      }
      .gallery-box {
        border-radius: 10px;
        height: 300px;
    }
    }

    .tab-pane {
      display: none;
      animation: fade 0.4s ease;
    }

    .tab-pane.active {
      display: block;
    }

    @keyframes fade {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

}
.media-image{
.students-aims {
    bottom: unset;
    right: auto;
    top: 6px;
    left: 8px;
    border-radius: 10px;
}
}

.popup{
    .donation-form {
    overflow-y: auto;
    height: 72vh;
    padding: 20px;
}
    .amount-display {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 600;
            border: 1px solid #dadada;
            border-radius: 4px;
        }

        .currency-symbol {
            background-color: #0073aa;
            color: white;
            padding: 10px 20px;
            margin-right: 15px;
            border-radius: 4px;
        }

        .amount-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }

        .amount-btn {
            padding: 12px 20px;
            border: 2px solid #ddd;
            background: white;
            cursor: pointer;
            font-size: 16px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .amount-btn:hover {
            border-color: #0073aa;
            color: #0073aa;
        }

        .amount-btn.active {
            background-color: #0073aa;
            color: white;
            border-color: #0073aa;
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            text-align: left;
            border-bottom: 1px solid #00000038;
            padding-bottom: 5px;
        }

        .payment-methods {
            margin-bottom: 30px;
        }

        .radio-group {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            cursor: pointer;
            accent-color: #0073aa;
        }

        .radio-option label {
            cursor: pointer;
            font-size: 15px;
        }

        .form-section {
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 5px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .form-label .required {
            color: #d63638;
            margin-left: 3px;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            margin-left: 5px;
            color: #999;
            cursor: help;
        }

        .form-input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #0073aa;
        }

        .card-number-group {
            position: relative;
            input{
                width: 100%;
            }
        }

        .autofill-badge {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #000;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .autofill-link {
            color: #00ff00;
            text-decoration: none;
        }

        .security-notice {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 4px;
            font-size: 14px;
            color: #666;
        }

        .security-notice::before {
            content: "🔒";
            margin-right: 8px;
        }

        .terms-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: #0073aa;
        }

        .terms-checkbox label {
            font-size: 14px;
            cursor: pointer;
        }

        .show-terms-link {
            color: #0073aa;
            text-decoration: none;
            margin-left: auto;
            font-size: 14px;
        }

        .show-terms-link:hover {
            text-decoration: underline;
        }

        .terms-content {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 4px;
            border-left: 3px solid #0073aa;
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }

        .terms-content.show {
            display: block;
        }

        .donation-total {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background-color: #0073aa;
            color: white;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .donation-total-label {
            font-size: 16px;
            font-weight: 600;
            margin-right: 20px;
            padding: 16px 20px;
        }

        .donation-total-amount {
            font-size: 24px;
            font-weight: 700;
        }

        .donate-button {
            width: 100%;
            padding: 18px;
            background-color: #0073aa;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .donate-button:hover {
            background-color: #005a87;
        }

        .payment-content {
            display: none;
        }

        .payment-content.active {
            display: block;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .amount-buttons {
                grid-template-columns: repeat(2, 1fr);
            }
        }
}


/* Causes */
.raised{
    margin-bottom: 5px;
    border-bottom: 2px solid #dadada;
    padding-bottom: 5px;
}
.income, .goal-text {
    font-size: 30px;
    font-weight: 700;
    color: #0073a8;
}
.goal-text{
    font-size: 16px;
}
.donr-p{
    width: 60px;
    height: 60px;
    background: #E7E6E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-card{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 20px;
}
.donr-n-d{
    h5{
        font-size: 18px;
        font-weight: 700;
        color: #002866;
        margin-bottom: 2px;
    }
    .blog-date{
        margin-bottom: 0;
        color: #b3b3b3;
        font-size: 14px;
    }
}
.amount-d{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
    border-bottom: 1px solid #dadada;
    p{
        margin-bottom: 0;
        color: #002866;
    }
    span{
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #002866;
    }
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .title {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .credibility{
        padding-right: 7%;
        img{
            width: 76%;
        }
    }
    .discover {
    .container-fluid {
        padding: 0 94px;
        padding-right: 7%;
    }
}
.detective-agency {
    padding-left: 7%;
}
.tabs-section {
    & .tabs-content {
        .gallery-box {
            height: 280px;
        }
    }
}
.popup {
    & .amount-display {
        font-size: 22px;
    }
    .amount-btn {
        padding: 6px 20px;
    }
    .form-input {
        padding: 13px;
    }
    .donation-form {
        height: 87vh;
    }
}
}
@media (max-width: 1440px) {}
@media (max-width: 1440px),
(max-width: 1366px) {
    .popup {
        & .amount-display {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .amount-btn {
            padding: 3px 19px;
            font-size: 14px;
        }
        .section-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .radio-option label {
            font-size: 14px;
        }
        .amount-buttons {
            gap: 5px;
            margin-bottom: 15px;
        }
        .form-label {
            font-size: 13px;
        }
        .form-input{
            font-size: 14px;
        }
        .form-section{
            margin-bottom: 10px;
        }
        .security-notice{
            margin-bottom: 10px;
        }
        .donation-total-amount {
            font-size: 20px;
        }
        .donation-total-label {
            font-size: 13px;
            padding: 11px 14px;
        }
        .donate-button {
            padding: 14px;
            font-size: 14px;
        }
        .terms-checkbox {
            margin-bottom: 10px;
        }
        .form-group {
            margin-bottom: 3px;
        }
    }
    .tabs-section {
        & .tabs-content {
            .gallery-box {
                height: 210px;
            }
        }
    }
    .topbar a{
        font-size: 15px;
    }
    
    .title {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .container {
        max-width: 1200px;
    }
    
    #menu>.main-menu>ul>li {
        padding-inline: 5px;
    }
    .section-title {
        font-size: 44px;
    }

    p {
        font-size: 16px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 15px;
    }
    
    .popup .popup__content {
        width: 60%;
    }
   .banner-item h1 {
    font-size: 50px;
}
.banner-item p {
    font-size: 17px;
}
.primary-btn {
    font-size: 16px;
    padding: 13px 23px;
} 
.cal-btn {
    font-size: 28px;
    margin-left: 40px;
} 
.call-email {
    padding: 5px 0;
    gap: 20px;
}
.credibility {
    h2 {
        padding-left: 35px;
        padding-right: 70px;
        font-size: 22px;
    }
}
.sub-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 14px;
}
.dec-italic {
    font-size: 19px;
    line-height: 173.913%;
}
.counter-item p {
    font-size: 20px;
}
.card-title {
    font-size: 22px;
}
.service-box {
    padding: 35px 12px;
    & .btn-group {
        .primary-btn {
            padding-inline: 40px;
            padding-block: 14px;
        }
    }
}
.discover-content {
    padding-block: 12px;
}
.other-service {
    & ul {
        li {
            font-size: 20px;
            line-height: 34px;
        }
    }
}
.cta {
    h2 {
        font-size: 38px;
    }
}
.cta-btn {
    p {
        font-size: 22px;
    }
    a {
        font-size: 44px;
    }
}
.accordion__item .accordion__title {
    font-size: 20px;
}
.content h3 {
    font-size: 20px;
}
.questionnaire {
    & .flex-box {
        h3 {
            margin-bottom: 20px;
            font-size: 32px;
        }
    }
}
.expertise {
    .card-title {
        font-size: 18px;
    }
    & ul {
        li {
            font-size: 16px;
            line-height: 28px;
        }
    }
}
.team-card {
    padding: 10px;
    .card-title {
        line-height: normal;
    }
    h4 {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 6px;
    }
    p {
        line-height: 150%;
        font-size: 14px;
    }
}
.team-section {
    &::after {
        height: 52%;
    }
}
.sec-gap {
    padding: 60px 0;
}
.inner-banner {
    h1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 19px;
    }
    p {
        font-size: 17px;
        line-height: 145%;
    }
}
.inner-banner {
    &::after {
        background: linear-gradient(90deg, rgb(0 0 0 / 86%) 0%, rgb(0 0 0 / 19%) 100%);
    }
}
.about-why-choose {
    .card-title {
        font-size: 20px;
    }
}
.branch-card {
    padding: 20px 10px;
}
.location-icon {
    margin: 0 auto 16px;
}
.branch-title {
    font-size: 18px;
}
.service-title {
    font-size: 14px;
    margin-bottom: 6px;
}
.address {
    font-size: 15px;
}
.blog-content {
    h3 {
        font-size: 24px;
        line-height: 123.333%;
        margin-bottom: 8px;
    }
}
.blog-tags {
    margin-bottom: 20px;
    .tag {
        padding: 12px 18px;
        font-size: 14px;
        line-height: 16px;
    }
}
.blog-content {
    & .blog-tags {
        margin-bottom: 15px;
        .tag {
            padding: 5px 15px;
            font-size: 15px;
        }
    }
}
.integrity{
    .card-title {
    line-height: 18px;
    margin-bottom: 7px;
}
}
.service-expertise {
    .container-fluid {
        padding-right: 7%;
        padding-left: 0;
    }
}
.service-expertise {
    & ul {
        li {
            font-size: 17px;
        }
    }
}
.widespread {
    .col-lg-7 {
        padding-block: 40px;
        padding-left: 12px;
    }
}
.blog-details {
    .blog-title {
        font-size: 46px;
    }
}
.pagination {
    a {
        font-size: 16px;
        line-height: 140.778%;
    }
}
.blog-details {
    ol,ul {
        font-size: 16px;
        line-height: 161.111%;
    }
}
.blog-details {
    h2 {
        font-size: 28px;
    }
}
.recent-post-list {
    & .recent-post-content {
        h4 {
            font-size: 16px;
            line-height: 120.444%;
        }
    }

}
.sidebar-form {
    padding-top: 6px;
}
.sidebar-service{
    a:last-child{
        .recent-post-list{
            border-bottom: 0;
        }
    }
}
.right {
    & .title {
        font-size: 37px;
        margin-bottom: 10px;
    }
}
    .counter-item h3{
        font-size: 46px;
    }
    .counter-item p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 0;
    }
    .textcircle {
        width: 180px;
        height: 180px;
    }
    .rotate-text {
        span {
            width: 60px;
            height: 60px;
            padding: 15px;
        }
    }
    .school-box {
        h3 {
            font-size: 24px;
        }
    }
    .title-md {
        font-size: 17px;
        margin-bottom: 5px;
    }
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .students-aims {
        h4 {
            font-size: 30px;
        }
    }
    .donation-subtitle {
        font-size: 24px;
    }
    .donation-benefits li{
        font-size: 15px;
    }
    .currency-input {
        padding: 11px 55px;
    }
    .currency {
        font-size: 17px;
    }
    .currency-input input {
        font-size: 17px;
    }
    .amount-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    .dvector {
        width: 45%;
    }
    .director-box {
        .caption h3 {
            font-size: 24px;
        }
    }
    .overlay-content h3 {
        font-size: 15px;
    }
    .overlay-content h2 {
        font-size: 28px;
    }
   
    footer p {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 7px;
    }
    footer ul li a, footer p a {
        font-size: 14px;
    }
    .story-list {
        p {
            font-size: 17px;
        }
    }
    .copyright {
        padding: 15px 0;
        font-size: 14px;
        margin-top: 40px;
    }
    .category-list {
        & li {
            font-size: 15px;
            &::before {
                width: 15px;
                height: 15px;
                background-size: contain;
            }
        }
    }
    .income, .goal-text {
        font-size: 26px;
    }
    .goal-text {
        font-size: 15px;
    }
    .sidebar-service {
        h3 {
            font-size: 20px;
            line-height: 22px;
        }
    }
    .donr-n-d {
        h5 {
            font-size: 16px;
        }
        .blog-date{
            font-size: 13px;
        }
    }
    .donr-p {
        width: 55px;
        height: 55px;
    }
    .amount-d {
        span {
            font-size: 18px;
        }
    }
}
@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    .tabs-section {
        & .tabs-content {
            .gallery-box {
                height: 140px;
            }
        }
    }
    .popup .popup__content {
        width: 80%;
    }
    .popup {
        .donation-form {
            height: 45vh;
        }
    }
    .right{
        padding: 20px;
    }
    .cal-btn {
    font-size: 20px;
    margin-left: 14px;
}
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
.banner{
    .slick-dots {
    bottom: 20px;
    }
}
.credibility {
        img {
            width: 68%;
        }
    }
        .section-title {
        font-size: 38px;
    }
.why-choose-us {
    background-position: 40%;
}
.discover-img {
    .small {
        bottom: -147px;
        width: 60%;
    }
}
.sub-title {
        font-size: 16px;
}
    .cta {
        h2 {
            font-size: 30px;
        }
    }
    .cta-btn {
    gap: 30px;
    width: 90%;
            a {
            font-size: 35px;
        }
}
    .detective-agency {
        padding-left: 2%;
    }
    .banner-item h1 {
        font-size: 44px;
    }
    .sec-gap {
    padding: 50px 0;
}
.about-why-choose {
    .card-title {
        font-size: 17px;
    }
}
.about-why-choose {
    .feature-box {
        min-height: 325px;
    }
}
.expertise {
    .card-title {
        font-size: 16px;
    }
}
.other-branches{
    .container-fluid {
    padding: 0 0px;
}
}
.blog-big-content {
    h2 {
        font-size: 40px;
        margin-bottom: 11px;
    }
}
.blog-content {
    h3 {
        font-size: 22px;
    }
}
.blog-content {
    margin-top: -25px;
}
.service-banner {
    height: 470px;
}
.service-why-choose {
    .center-img {
        width: 290px;
        height: 350px;
    }
}
.detective-agency-bangalore-img {
    .small-img {
        right: -10px;
    }
}
.right {
    & .title {
        font-size: 28px;
        margin-bottom: 10px;
    }
}
.feature-card {
    padding: 15px 15px;
}
.feature-text {
    margin-bottom: 45px;
}
.img-box {
    height: 100%;
}
.donation-benefits li {
        font-size: 13px;
    }
    .amount-buttons {
    gap: 5px;
}
.dvector {
    width: 35%;
    bottom: -40px;
    left: -6%;
}
    .school-box {
        h3 {
            font-size: 21px;
        }
        h4 {
            font-size: 12px;
        }
    }
.sidebar-service {
    padding: 15px;
}
.side-card {
    padding-block: 10px;
}
}

@media (max-width: 991.98px) {
    .popup .popup__content {
        width: 90%;
    }
    .popup {
        .donation-form {
            height: 67vh;
        }
        .amount-btn {
            padding: 12px 20px;
            font-size: 15px;
        }
    }
    .header-area {
        position: fixed;
    }
    .header-area.sticky {
        #menu .main-menu {
            top: 0;
            padding-top: 120px;
        }
    }
    .left{
        background: #C59D16;
    }
    .title{
        text-align: center;
    }
  
.Philosophy {
    text-align: center;
    .btn-group{
        justify-content: center;
    }
}
.about-why-choose {
    .feature-box {
        padding: 8px;
        padding-left: 12px;
        min-height: 320px;
    }
        .card-title {
        font-size: 18px;
    }
}
.expertise{
    .btn-group{
        justify-content: center;
    }

}
.team-section {
    &::after {
        height: 33%;
    }
}

    #menu {
        justify-content: space-between;
        padding-right: 18%;
        padding-block: 4px;
    }
   
    .logo {
        padding-block: 10px;
    }

    .hamburger {
        background: #F7D86F;
        border-radius: 4px;
    }
    .hamburger:before {
        background: #306F5E;
    }
    .hamburger:after {
        border-top: 2px solid #306F5E;
        border-bottom: 2px solid #306F5E;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 158px;
        background-color: #306F5E;
    }
    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #d2b4502e;
    }
    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }
    #menu>.main-menu>ul>li>a, #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }
    header .flex-box {
        margin-top: 0;
        z-index: -1;
    }
        
    #menu .submenu-button {
        height: 77px;
        width: 70px;
    }

    #menu .submenu-button:after {
        top: 28px;
        right: 30px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 34px;
    }
   .banner-item {
        height: 350px;
        margin-top: 140px;
    }
.banner-content {
    width: 64%;
}
    .cal-btn {
        font-size: 30px;
        margin-left: 0;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
    }
        .credibility {
        h2 {
            padding-left: 15px;
            padding-right: 50px;
            font-size: 20px;
        }
        img {
            width: 65%;
        }
    }
        .discover {
        .container-fluid {
            padding: 0 16px;
            padding-right: 5%;
        }
    }
        .discover-img {
        .small {
            bottom: unset;
            width: 60%;
            position: relative;
            margin-top: -245px;
            margin-left: 58%;
        }
    }
    .cta {
        h2 {
            font-size: 28px;
        }
    }
    .cta-btn {
    span {
        position: relative;
        width: 50px;
        height: 50px;
        z-index: 1;
    }
            p {
            font-size: 18px;
        }
                a {
            font-size: 26px;
        }
}
.detective-agency {
    .discover-content {
        padding-block: 50px;
    }
}
.questionnaire {
        & .flex-box {
            h3 {
                margin-bottom: 20px;
                font-size: 24px;
            }
        }
    }
.questionnaire {
    .contact-box {
        flex: 1.5;
        padding: 10px;
    }
}
.get-in-touch {
    padding-bottom: 19%;
}
.fixed-btn {
    bottom: 90px;
}
.other-branches {
        .container-fluid {
            padding: 0 15px;
        }
    }
    .contact {
    .contact-box .icon {
        height: 30px;
        margin-top: 0px;
    }
}
    .blog-big-content {
        h2 {
            font-size: 30px;
            margin-bottom: 11px;
        }
    }
.blog-big-content {
        position: relative;
        padding: 18px 10px;
        z-index: 2;
        background: #192741;
        border-radius: 0 0 10px 10px;
        margin-top: -14px;
        z-index: 0;
        padding-top: 25px;
    }
    .blog-tags {
        .tag {
            padding: 7px 12px;
            font-size: 10px;
            line-height: 16px;
        }
    }
    .widespread {
    .col-lg-7 {
        padding-block: 30px;
        padding-left: 12px;
    }

}
.services-in-bangalore {
    padding-top: 30px;
    .col-lg-8 {
        padding-block: 40px;
        padding-right: 0px;
        text-align: center;
    }
    .col-lg-4{
        order: -1;
    }
}
.detective-agency-bangalore{
    .col-lg-5{
        order: -1;
        margin-bottom: 50px;
    }
}
.detective-agency-bangalore-img {
    .small-img {
        position: absolute;
        right: -10px;
        bottom: -60px;
        width: 53%;
    }
}
.agency-expertise {
    & ul {
        li {
            width: 100%;
        }
    }
}
.locatopn-details {
    text-align: center;
    .sidebar-form {
        text-align: left;
    }
}
.technologies {
    .col-lg-7 {
        padding-right: 9px;
        text-align: center;
        padding-top: 0;
    }
}
.integrity {
    .container-fluid {
        padding-left: 1%;
        padding-right: 1%;
    }
}
.service-why-choose {
    .row .col-lg-4:nth-child(2) {
        display: none;
    }
}
.service-why-choose {
    .right-content,.left-content {
        text-align: center;
        .icon-box {
            margin-left: auto;
            margin-inline: auto;
        }
    }
}
.service-expertise {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.blog-details {
    .blog-title {
        font-size: 34px;
    }
}
.right {
    & .title {
        font-size: 28px;
        margin-bottom: 10px;
    }
}
.topbar{
    .header-address, span{
        display: none;
    }
}
.about-us{
    .row{
        .col-lg-6:last-child{
            order: -1;
        }
        .col-lg-6:first-child{
            background: #f0f0f0;
            text-align: center;
            padding-block: 20px;
            margin-top: -70px;
            z-index: 1;
            .btn-group{
                justify-content: center;
            }
        }
    }
}
.sec-gap {
        padding: 40px 0;
    }
    .counter {
    padding: 40px 0;
    padding-top: 5px;
}
.project{
    .row{
        .col-lg-6:last-child{
            order: -1;
        }
    }
}
    .dvector {
        display: none;
    }
        .donation-benefits li {
        font-size: 14px;
    }
    .transfarming {
        text-align: center;
    }
    .mb-50
 {
    margin-bottom: 30px;
}
    .donation-subtitle {
        font-size: 20px;
    }
    .section-title {
        font-size: 35px;
    }
    .director-box {
        margin-top: 40px;
        .profile-card {
            height: 410px;
        }
    }
    .media-text {
        padding: 15px;
    }
    footer{
        padding-top: 30px;
    }
    .story-list {
        img {
            width: 80px;
            height: 80px;
        }
    }
    .about{
        .row{
            .col-lg-5:last-child{
                order: -1;
            }
        }
        .media-image {
            height: 700px;
        }
    }
    .sidebar-service {
        margin-bottom: 20px;
        padding: 20px;
        h3{
            margin-bottom: 5px;
        }
    }
    .donation-banner {
        & .container {
            .play-btn {
                left: 60%;
                top: 41%;
            }
        }
    }
}
@media (max-width: 575.98px) {
    .header-area.sticky {
        #menu .main-menu {
            padding-top: 85px;
        }
    }
    .banner-item {
        margin-top: 75px;
    }
    .title {
        font-size: 25px;
        margin-bottom: 15px;
        line-height: 19px;
    }
    .topbar {
        font-size: 14px;
        padding: 4px 0;
        display: none;
    }
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
    .form-group {
        margin-bottom: 5px;
    }
    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    #menu {
        justify-content: space-between;
    }

    .logo {
        width: 160px;
        padding-block: 3px;
        height: 63px;
        display: flex;
        align-items: center;
    }

    .hamburger {
        top: 18px;
        width: 43px;
        height: 36px;
    }
    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }
    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }
    #menu .submenu-button {
        height: 51px;
        width: 70px;
        background: rgb(255 255 255 / 3%);
    }
    .banner-item {
        height: 200px;
    }
    .section-title {
        font-size: 24px;
        line-height: inherit;
            margin-bottom: 5px;
    }
.mb-50 {
    margin-bottom: 20px;
}
.about-us{
    text-align: center;
    .title-md {
    font-size: 16px;
}
    .btn-group {
        justify-content: center;
    }
}
    .dec-italic {
        font-size: 16px;
        line-height: 150.913%;
    }
    p {
        font-size: 14px;
    }

    .sec-gap{
        padding: 20px 0;
    }

    .mb-20 {
        margin-bottom: 10px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    footer {
        padding-top: 20px;
        text-align: center;
    }
    .flex-box {
        gap: 10px;
    }
    .copyright {
        padding: 10px 0;
        padding-bottom: 0;
        justify-content: center;
    }

    .copyright p {
        margin-bottom: 5px;
    }

   #menu{
    padding-right: 15%;
   }
    #menu .main-menu {
        top: 70px;
        flex-direction: column;
        padding-right: 0;
        overflow-y: auto;
        padding-bottom: 100px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 16px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    #menu .submenu-button:after {
        top: 22px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(0deg);
        top: 22px;
    }

    #menu ul ul li a {
        padding-left: 15px;
    }

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .popup .popup__content {
        width: 95%;
    }
    .popup {
        .amount-btn {
            padding: 10px 20px;
            font-size: 14px;
        }
        .donation-total-label {
            font-size: 12px;
            padding: 11px 14px;
        }
        .donation-total-amount {
            font-size: 18px;
        }
        .donate-button {
            padding: 12px;
            font-size: 13px;
        }
        .terms-checkbox {
            margin-bottom: 0;
        }
        .donation-form {
            padding: 15px;
        }
        .section-title {
            font-size: 14px;
        }
        .donation-form{
            height: 80vh;
        }
    }

    .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .left {
        padding-block: 15px;
    }

    #menu .main-menu ul li.current-menu-item a::after{
        display: none;
    }
    
    .primary-btn {
        font-size: 14px;
        padding: 8px 24px;
    }
    .btn-group {
        display: flex;
        gap: 10px;
    }
    .banner-content {
        width: 92%;
    }
    
    .banner-slider .slick-dots {
        bottom: 10px;
    }
   
   
    .enq-btn {
        height: 30px;
        box-shadow: -2px -2px 0px #ffffff;
    }
    .enq-btn a {
        font-size: 14px;
        line-height: 30px;
    }
    .fixed-btn {
        top: unset;
        right: 5px;
        width: 50px;
    }
    .fc {
    width: 45px;
    height: 45px;
    margin-inline: auto;
}
       .banner-item h1 {
        font-size: 26px;
        margin-bottom: 4px;
    }
        .banner-item p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .banner-item:after {
    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0 / 25%) 100%);
}
.credibility {
    background: #F6F6F6;
    padding-block: 4px;
    display: block;
    padding-right: 10px;
    h2 {
        padding-left: 15px;
        padding-right: 50px;
        font-size: 18px;
        padding-block: 1px;
        width: 100%;
        margin-bottom: 10px;
    }
    img {
            width: 100%;
    }
}
    .sub-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .counter-item h3 {
    font-size: 40px;
    line-height: 28px;
    margin-bottom: 10px;
}
    .counter-item p {
        font-size: 13px;
    }
    .counter-item {
    &:after {
        height: 6px;
        bottom: -10px;
        left: 0;
    }
}
.counter {
    padding: 30px 0;
    padding-top: 20px;
}
.service-img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}
.card-title {
    font-size: 18px;
    line-height: 24px;
}
.discover-img {
    position: relative;
    padding-right: 50px;
}
.other-service {
    h3 {
        font-size: 22px;
    }
    & ul {
        li {
            font-size: 16px;
            line-height: 28px;
        }
    }
}
    .cta {
        h2 {
            font-size: 22px;
        }
    }
        .cta-btn {
        span {
            position: absolute;
            width: 50px;
            height: 50px;
            z-index: 1;
            top: -20px;
        }
    }
    .cta-btn {
        gap: 11px;
        width: 98%;
        margin-top: 47px;
        padding-top: 44px;
        padding-bottom: 15px;
    }
    .detective-agency {
        .discover-content {
            padding-block: 30px;
        }
    }
    .questionnaire {
        .form-section {
        padding: 20px;
    }
            .contact-box {
            padding: 20px;
        }
        & .flex-box {
            display: block;
        }
    }
label {
    margin-bottom: 4px;
    font-size: 15px;
}
    .get-in-touch {
        padding-bottom: 80%;
    }
    .testimonials {
    padding-top: 30px;
    padding-bottom: 80px;
}
.testi-slider {
    .slick-dots {
        bottom: -50px;
    }
}
.accordion__item .accordion__title {
        font-size: 14px;
        padding-right: 34px;
    }
    .accordion__item .accordion__content {
    font-size: 14px;
}
.accordion__item {
    margin: 6px auto;
}
.blog-card .date-box {
    right: 12px;
    bottom: -33px;
}
.date-box span {
    font-size: 15px;
}
.date-box .day {
    font-size: 34px;
}
.date-box .year {
    font-size: 18px;
}
.content .tag {
    font-size: 14px;
}
    .content h3 {
        font-size: 14px;
        line-height: 130%;
    }
    .content p {
       margin: 0;
    }
    .map iframe {
    height: 300px;
}
.top-social {
    justify-content: center;
}
    .copyright {
        margin-top: 10px;
    }
    .footer-title {
    font-size: 18px;
    line-height: 53px;
}
.footer-title:after {
    margin-inline: auto;
}
    .about-why-choose {
        .feature-box {
            padding: 8px;
            padding-left: 12px;
            min-height: auto;
        }
    }
    .inner-banner {
        height: 200px;
    .banner-content {
        width: 88%;
    }
    h1 {
        font-size: 30px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    p {
    font-size: 14px;
    line-height: 145%;
    margin: 0;
}
}
.highlights {
    padding: 10px 10px;
    margin-top: 8px;
}
.achievements {
    text-align: center;
}
.our-mision {
    padding: 15px;
    text-align: center;
    img {
        position: relative;
        top: unset;
        left: unset;
    }
}
.team-section {
    &::after {
        height: 15%;
    }
}
.awards{
    padding-bottom: 70px;
}
.contact {
    .contact-box h3 {
        font-size: 24px;
    }
}
.contact {
    & .contact-box p {
        strong {
            font-size: 16px;
            line-height: 16px;
        }
    }
}
.follow{
    .card-title{
        text-align: center;
    }
}
    .branch-title {
        font-size: 16px;
        line-height: normal;
    }
        .service-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
        .address {
        font-size: 14px;
    }
        .location-icon {
        margin: 0 auto 11px;
        width: 70px;
        height: 70px;
    }
        .branch-card {
        padding: 12px 5px;
    }
.service-banner {
    height: auto;
    .banner-bg{
        position: absolute;
    height: 100%;
    width: 100vw;
    }
    .container{
            display: block;
    position: relative;
    padding-block: 30px;
    }
    .banner-content {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }
}
    .service-why-choose {
        .right-content, .left-content {
            text-align: center;
            background: #ffffff0d;
            padding-top: 25px;
            margin-bottom: 0;
        }
    }
    .service-expertise {
        & ul {
            li {
                font-size: 17px;
                width: 100%;
                text-align: left;
            }
        }
    }
    .feature-box {
    position: relative;
    margin-bottom: 20px;
    padding-left: 0;
    margin-bottom: 24px;
    text-align: center;
    .icon-box {
        position: relative;
        top: unset;
        left: 0;
        transform: unset;
        outline: 1px dashed #1F2A44;
        outline-offset: 5px;
        margin-bottom: 20px;
        margin-inline: auto;
    }
}
.service-faq {
    .accordion__item .accordion__title {
        line-height: normal;
    }
}
section.sec-gap.integrity {
    text-align: center;
}
.why-choose-us {
    text-align: center;
}
.why-choose-us {
    & .sub-title {
        &::before {
            opacity: 1;
        }
    }
}
.team-card {
    padding: 10px;
    text-align: center;
    .icon-box {
        margin-inline: auto;
    }
}
.blog-details-banner{
    height: auto;
}
.blog-details {
    .blog-title {
        font-size: 22px;
    }
    .details-tag {
        font-size: 15px;
        line-height: 10px;
    }
}
.blog-details {
    h2 {
        font-size: 20px;
        line-height: 110%;
    }
}
.blog-details {
    ol, ul {
        font-size: 14px;
        line-height: 161.111%;
    }
}
.blog-details {
    h3 {
        font-size: 20px;
        line-height: 110%;
    }
}
.pagination {
    h4 {
        font-size: 16px;
        line-height: 10px;
        margin-bottom: 12px;
    }
    a {
    font-size: 14px;
    line-height: 130.778%;
    display: block;
}
}
.sidebar-form,.sidebar-service {
    h3 {
        line-height: 40px;
    }
}
.right {
    & .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}
.about-us {
    .container {
        padding-inline: 15px;
    }
    .row {
        .col-lg-6:first-child {
            padding-block: 10px;
            margin-top: -40px;
        }
    }
}
    .textcircle {
        width: 160px;
        height: 160px;
    }
        .rotate-text {
            bottom: -55px;
        span {
            width: 45px;
            height: 45px;
            padding: 10px;
        }
    }
    .project{
        border-radius: 10px;
    }
.project-img {
    img {
        border-radius: 10px;
    }
}
.fb {
    width: 40px;
    height: 40px;
}
.highlight {
    padding: 15px;
}
    .title-md {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .donation-container {
        padding: 20px 10px;
        border-radius: 10px 10px 65px 10px;
    }
    .donation-subtitle {
        font-size: 15px;
    }
    .donation-benefits {
        flex-direction: column;
        margin-bottom: 5px;
    }
    .currency {
        font-size: 15px;
    }
    .currency-input input {
        font-size: 15px;
    }
    .currency-input {
        padding: 14px 55px;
    }
        .amount-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
    .donate-btn {
        padding: 12px 23px;
        font-size: 14px;
    }
    .director-box {
        margin-top: 10px;
        flex-direction: column;
        gap: 30px;
        .profile-card {
            height: 440px;
        }
        .caption h3 {
            font-size: 22px;
        }
        .caption .social-links a {
            width: 40px;
            height: 40px;
        }
    }
    .gallery-box{
        border-radius: 10px;
    }
    .media-image {
        height: 250px;
    }
    .media-image img {
        height: 100%;
    }
    .overlay-content h3 {
        font-size: 13px;
    }
    .overlay-content h2 {
        font-size: 24px;
    }
    .footer-logo {
        width: 75%;
    }
    footer p {
        font-size: 12px;
    }
    .footer-title {
        font-size: 16px;
        line-height: 30px;
    }
    footer ul li a, footer p a {
        font-size: 12px;
    }
    .story-list {
        padding-right: 0;
        margin-bottom: 10px;
        p {
            font-size: 14px;
            text-align: left;
        }
        img {
            width: 90px;
        }
    }
    .textcircle text {
        font-size: 28px;
    }
    .media-text {
        padding: 10px;
    }
    .container-fluid {
        padding: 0 20px;
    }
    .tabs-section {
        .tabs-list li {
            padding: 10px 12px;
        }
        .tabs-content {
            padding: 12px;
            h2{
                font-size: 17px;
                margin-bottom: 5px;
            }
        }
    }
    .about {
        .media-image {
            height: 400px;
        }
    }
    .category-list {
        & li {
            font-size: 14px;
            line-height: 145%;
        }
    }
    .contact {
        .form-box {
            padding: 20px;
        }
    }
    .contact {
        .contact-box h3 {
            font-size: 30px;
            margin-bottom: 0px;
        }
        .contact-box p {
            strong {
                font-size: 14px;
            }
        }
        .contact-box .icon {
            width: 20px;
            height: 25px;
        }
    }
    .sidebar-service {
        h3 {
            font-size: 18px;
            line-height: 22px;
        }
    }
    .donation-banner{
        .container{
            .play-btn {
                top: 45%;
                left: 68%;
            }
            .textcircle {
                width: 140px;
                height: 140px;
            }
        }
    }
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  margin-top: 70px;
  gap: 12px;
  justify-content: center;
}
.wp-pagenavi a,  .wp-pagenavi .current{
  border-style: solid;
  border-radius: 4px;
border: 1px solid #4656A7;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #939393;
  line-height: 1.684;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;

}
.wp-pagenavi .current,.wp-pagenavi a:hover {
  background: #306f5e;
  color: #fff
}
.wp-pagenavi a.next,
.wp-pagenavi a.prev{
  width: auto;
  background-color: transparent;
  color: #306f5e;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
border: 0;
}
.wp-pagenavi a.next:hover,
.wp-pagenavi a.prev:hover{
  color: #4656A7;
}
.wp-pagenavi {
  margin-top: 40px;
  gap: 4px;
}
.wp-pagenavi a, .wp-pagenavi .current {
  font-size: 14px;
}
.wp-pagenavi a.next, .wp-pagenavi a.prev {
  font-size: 16px;
}

/* Fixed Button Container */
        .fixed-contact-btn {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Toggle Button */
        .toggle-btn {
            background: linear-gradient(135deg, #4a9d7f 0%, #2d7a5f 100%);
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 15px 10px;
            cursor: pointer;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .toggle-btn:hover {
            box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
            transform: translateX(3px);
        }

        .icon-item {
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: transform 0.2s ease;
        }

        .icon-item:hover {
            transform: scale(1.1);
        }

        /* Contact Panel */
        .contact-panel {
            position: fixed;
            left: -400px;
            top: 50%;
            transform: translateY(-50%);
            width: 350px;
            background: white;
            border-radius: 0 12px 12px 0;
            box-shadow: 5px 0 20px rgba(0,0,0,0.15);
            padding: 30px 25px;
            transition: left 0.4s ease;
            z-index: 1000;
        }

        .contact-panel.active {
            left: 0;
        }

        .panel-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #4a9d7f;
        }

        .panel-header h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .panel-header p {
            color: #666;
            font-size: 14px;
        }

        .contact-item {
            margin-bottom: 20px;
            padding: 15px;
            background: #f0f8f5;
            border-radius: 8px;
            border-left: 4px solid #4a9d7f;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: #e6f4ed;
            transform: translateX(5px);
        }

        .contact-label {
            font-weight: bold;
            color: #4a9d7f;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .contact-value {
            color: #333;
            font-size: 15px;
            word-break: break-word;
        }

        .contact-value a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: #4a9d7f;
        }

        .donate-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #4a9d7f 0%, #2d7a5f 100%);
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(74, 157, 127, 0.3);
        }

        .donate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 157, 127, 0.4);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #4a9d7f;
        }


        @media (max-width: 768px) {
            .contact-panel {
                width: 90%;
                left: -100%;
            }

            .toggle-btn {
                padding: 10px 8px;
            }

            .icon-item {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }

.gurukul-donate{
    background: linear-gradient(135deg, #4a9d7f 0%, #2d7a5f 100%);
    position: relative;
    .content{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block: 65px;
        padding-left: 26%;
        h2{
            color: #FFF;
            font-family: 'FilsonProRegular';
            font-size: 50px;
            font-style: normal;
            font-weight: 700;
            line-height: 54px;
            span{
                font-size: 32px;
            }
        }
		.primary-btn{
			padding-inline:50px;
		}
    }
    .left-img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width:1600px){
	.gurukul-donate {
    .content {
        padding-left: 36%;
    }
}
}
@media (max-width:1400px),(max-width:1366px){
	.gurukul-donate {
    .content {
      padding-left: 28%;
	  padding-block: 32px;
	h2 {
         font-size: 40px;
         line-height: 125%;
    }
    }
    .left-img {
        width: 30%;
    }
}
}
@media (max-width:1199.99px){
	.gurukul-donate {
    .content {
        padding-left: 36%;
		& h2 {
			    font-size: 40px;
                line-height: 106%;
            span {
                font-size: 24px;
            }
        }
    }
		.left-img {
            width: 35%;
        }
}
}
@media (max-width: 991.98px){
	.gurukul-donate {
    .content {
        flex-wrap: wrap;
        gap: 7px;
        padding-block: 18px;
        padding-left: 52%;
		h2{
			                font-size: 36px;
                line-height: 94%;
			span {
                    font-size: 18px;
                }
		}
    }
		        .left-img {
            width: 50%;
        }
}
}
@media (max-width: 575.98px) {
   .gurukul-donate {
    .content {
                    padding-left: 0%;
            padding-top: 8px;
            padding-bottom: 20px;
		h2 {
                font-size: 28px;
                line-height: 104%;
			                span {
                    font-size: 18px;
                    font-weight: normal;
                }
            }
    }
	           .left-img {
            width: 100%;
            position: relative;
            top: -5px;
            transform: unset;
        }
}
	.icon-item
Specificity: (0,1,0)
 {
        padding: 8px;
    }
}