@font-face {
	font-family: mr;
	src: url("font/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
	font-family: ob;
	src: url("font/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
	font-family: oi;
	src: url("font/OpenSans-Italic.woff2") format("woff2");
}
@font-face {
	font-family: or;
	src: url("font/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
	font-family: pl;
	src: url("font/Poppins-Light.woff2") format("woff2");
}
@font-face {
	font-family: pm;
	src: url("font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
	font-family: pr;
	src: url("font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
	font-family: psb;
	src: url("font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
	font-family: ub;
	src: url("font/Ubuntu-Bold.woff2") format("woff2");
}
@font-face {
	font-family: ur;
	src: url("font/Ubuntu-Regular.woff2") format("woff2");
}
@font-face {
	font-family: udt;
	src: url("font/UrduType.woff2") format("woff2");
}
@font-face {
	font-family: yb;
	src: url("font/Ysabeau-Black.woff2") format("woff2");
}
@font-face {
	font-family: ysb;
	src: url("font/Ysabeau-SemiBold.woff2") format("woff2");
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #784A38;
}

::-webkit-scrollbar-thumb:hover {
    background: #C6876F;
}
html, body{
    overflow-x: hidden;
    background-color: white;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.slide-in-top {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    will-change: opacity, transform;
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    will-change: opacity, transform;
}
.slide-in-right {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    will-change: opacity, transform;
}
.slide-in-bottom {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    will-change: opacity, transform;
}
.rotate-in{
    opacity: 0;
    transform: rotateY(90deg);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    will-change: opacity, transform;
}
.slide-in-animation {
    opacity: 1;
    transform: translateX(0) translateY(0) rotateY(0);
}
#head{
    padding: 1% 8% 1% 8%;
    background-color: white;
}
#head-1,#head-2,#head-3{
    display: flex;
    align-items: center;
}
#head-1{
    justify-content: start;
}
#head-2{
    justify-content: end;
    column-gap: 25px;
}
#head-3{
    justify-content: end;
    column-gap: 10px;
}
#head-2-a1,#head-2-a2{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    font-family: ur;
    color: #6c6e70;
}
#head-2-a1::before{
    content: url(phone.png);
}
#head-2-a2::before{
    content: url(form.png);
}
#head-1 a,#head-2 a{
    text-decoration: none;
    color: black;
    font-size: medium;
}
#head-3 a:nth-child(1){
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: medium;
    padding-top: 1%;
    padding-bottom: 2%;
    background-color: #C6876F;
    border-radius: .25rem;
    font-family: ur;
}
#head-3 a img{
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#head-1 a:hover,#head-2 a:hover{
    text-decoration: underline;
}
#home4 video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 10px solid #784A38;
}
.navbar{
    background-color: #784A38;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.navbar-nav{
    margin: auto;
}
#atag,#atag-services{
    color: white;
    transition: .4s;
    border-radius: 0.25rem;
    font-family: fr;
    cursor: pointer;
    font-size: medium;
    text-align: center;
    font-family: ob;
}
#atag:hover,#atag-services:hover,#atag-home{
    background-color: #C6876F;
    color: white;
    transition: .4s;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: medium;
    text-align: center;
    font-family: ob;
}
.dropdown-toggle{
    cursor: pointer;
    font-size: medium;
    text-align: center;
    font-family: ob;
    border-radius: 0.25rem;
    color: white;
    padding: 2%;
    transition: .4s;
}
.dropdown-toggle:hover{
    color: #C6876F;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 105%;
    left: auto;
    z-index: 10;
    opacity: 0;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateY(-10px);
}

/* Show dropdown menu on hover */
.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    background-color: #784A38;
    border: 2px solid white !important;
}

/* Style dropdown items */
.dropdown-item {
    padding: 0.5rem 1rem !important;
    color: white !important;
    text-decoration: none !important;
    font-size: medium !important;
    text-align: center !important;
    font-family: ob !important;
}

.dropdown-item:hover {
    background-color: #C6876F !important;
}
#home,#home8,#home9,#home5,#home11{
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#home{
    background-image: url(Section1.png);
    display: grid;
    align-items: end;
    min-height: 45vw;
    background-attachment: scroll;
}
#home-services-1,#home-services-2,#home-services-3,#home-services-4,#home-services-5,#home-services-6,#home-services-7{
    background-repeat: no-repeat, no-repeat;
    border-bottom: 10px solid #7A4D3A;
    padding: 5%;
}
#home-services-1,#home-services-3,#home-services-5,#home-services-7{
    background-position: 0 100%, center 25%;
    /* animation: bg2 1.5s ease-in; */
}
#home-services-2,#home-services-4,#home-services-6{
    background-position: 100% 100%, center 25%;
    /* animation: bg 1.5s ease-in; */
}
#home-services-1{
    background-image: url(gallery/s-6.png), url(gallery/bg-right.png); 
    background-size: 60%, cover;
    /* left    */
}
#home-services-2{
    background-image: url(gallery/s-2.png), url(gallery/bg-left.png);
    background-size: 50%, cover;
}
#home-services-3{
    background-image: url(gallery/s-3.jpeg), url(gallery/bg-right.png);
    background-size: 50%, cover;
}
#home-services-4{
    background-image: url(gallery/s-4.png), url(gallery/bg-left.png);
    background-size: contain, cover;
}
#home-services-5{
    background-image: url(gallery/s-5.png), url(gallery/bg-right.png);   
    background-size: 35%, cover;
}
#home-services-6{
    background-image: url(gallery/s-1.png), url(gallery/bg-left.png);
    background-size: 60%, cover;
}
#home-services-7{
    background-image: url(gallery/s-6.png), url(gallery/bg-right.png);
    background-size: 60%, cover;
}
/* @keyframes bg {
    0%{
        background-position: 200% 200%;
    }
    100%{
        background-position: 100% 100%;
    }
}
@keyframes bg2 {
    0%{
        background-position: -100% 0;
    }
    100%{
        background-position: 0 100%;
    }
} */
#home11{
    background-image: url(Section4.png);
    /* min-height: 110vw; */
    background-attachment: scroll;
    padding: 10% 0 10% 0;
}
#home11 h1{
    font-family: pr;
}
#home11 p{
    font-family: pl;    
}
#home5{
    background-image: url(Section3.png);
    min-height: 40vw;
    background-attachment: scroll;
    border-bottom: 20px solid #7A4D3A;
    border-top: 20px solid #7A4D3A;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 5%;
    text-align: left;
}
#year-box-empty{
    background-color: #7A4D3A;
    border-bottom: 50px solid white;
    border-top: 50px solid white;
}
#year-box{
    background-color: #7A4D3A;
    color: white;
    padding: 5% 5% 5% 6.5%;
    margin-top: -5%;
    margin-bottom: -5%;
}
#year-box h1,h2{
    font-family: ysb;
}
#year-box h1{
    font-size: 5rem;
} 
#year-box h2{
    font-size: 2rem;
}
#year-box p{
    font-family: pr;
}
#intro-bar{
    background-color: #733214BA;
    padding: 2%;
}
#ib-1{
    display: flex;
    align-items: top;
    justify-content: center;
}
#ib-1 h1{
    color: white;
    font-size: 3rem;
    font-family: pr;
}
#ib-1 h3,#ib-1-2 h3{
    color: #7A4D3A;
    font-size: 2rem;
    font-family: ub;
}
#ib-1 p,#ib-1-2 p{
    color: #7A4D3A;
    font-size: 1.2rem;
    font-family: pl;
}
#ib-1 h3,p{
    text-align: left;
}
#ib-1-2,#ib-1-2 p{
    text-align: right;
}
#ib-1 p{
    padding-right: 25%;
}
#ib-1-2 p{
    padding-left: 25%;
}
#ib-1 img{
    margin: auto;
}
#home9{
    padding: 3% 10% 3% 10%;
    background-color: white;
}
#home4{
	background-color: white;
    padding: 5%;
    text-align: center;
}
#home8{
    background-color: white;
    min-height: 30vw;
}
#home4 h3{
    font-size: 3rem;
    color: #8E604C;
    font-family: pr;
}
#home4 p{
    text-align: center;
    color: #444955;
    font-family: udt;
    font-size: x-large;
}
#com-btn,#com-btn-2{
    font-size: medium;
    text-decoration: none;
    font-family: ob;
    padding: 1% 5% 1% 5%;
    border-radius: .4rem;
    background-color: none;
    transition: .4s;
    font-family: ub;
}
#com-btn{
    border: 1px solid white;
    color: white;
}
#com-btn-2{
    border: 1px solid #7A4D3A;
    color: #7A4D3A;
}
#com-btn::after,#com-btn-2::after{
    content: '→';
    margin: 0 0 .5% 1%;
    font-size: large;
}
#com-btn:hover,#com-btn-2:hover{
    background-color: #7A4D3A;
}
#com-btn-2:hover{
    color: white;
}
#home2{
    padding: 5%;
    background-color: white;
}
#mem-sec{
    padding: 0 10% 0 10%;
}
#mem,#ses{
    display: flex;
    align-items: center;
    justify-content: center;
}
#mem img,#ses a img,#mem a img{
    margin: auto;
    height: auto;
    transform: scale(.8);
    filter: brightness(95%);
    transition: .4s;
    cursor: pointer;
}
#mem img,#mem a img{
    width: auto;
}
#ses a img{
    width: 100%;
}
#mem img:hover,#ses a img:hover,#mem a img:hover{
    transform: scale(.85);
    filter: brightness(100%);
}
#home3{
    background-color: #7A4D3A;
    padding: 7% 0 7% 0;
}
#Services{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #7A4D3A;
    color: white;
    padding: 1% 5% 1% 5%;
    text-align: center;
    margin-left: 0;
    margin-bottom: 1%;
    margin-top: 1%;
    width: fit-content;
    font-size: 2rem;
    font-family: psb;
}
#home6{
    padding: 10%;
}
#home6 h3{
    text-align: center;
    color: #8E604C;
    font-weight: 800;
    font-size: 4rem;
    font-family: yb;
}
#home7{
    background-color: #7A4D3A;
    padding: 3% 3% 3% 0;
}
#g1-video,#g1-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
#g1-img{
    width: 100%;
    height: auto;
    margin: auto;
}
#g1-video video{
    width: 100%;
    height: auto;
    margin: auto;
}
.b-box-1{
    display: flex;
    align-items: end;
    justify-content: space-around;
    border-bottom: 5px solid white;
    padding: 5%;
    text-align: left;
    color: white;
}
.b-box-1 h3{
    font-family: pm;
    text-align: left;
}
.b-box-2{
    display: flex;
    align-items: top;
    justify-content: center;
    border-top: 5px solid white;
    padding: 5% 8.5% 5% 8.5%;
    text-align: left;
    color: white;
}
.b-box-2 p{
    font-family: pl;
    font-size: large;    
}
.video-background {
    margin: 10% 0 0 0;
    position: relative;
    width: 100%;
    min-height: 40vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 5%;
    border-bottom: 20px solid #7A4D3A;
    border-top: 20px solid #7A4D3A;
}
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
    background-color: black; /* Ensure a fallback background color */
}
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: left;
    font-family: Arial, sans-serif;
}
.content h1 {
    font-size: 2rem;
    margin: 0;
    font-family: psb;
}
.content p {
    font-size: 1.2rem;
    margin: 10px 0 0;
    padding-right: 50%;
    font-family: ob;
}
#home8{
    display: grid;
    align-items: center;
    justify-content: center;
}
#home8 h1{
    font-size: 3rem;
    color: #7A4D3A;
    text-align: center;
}
.testimonial-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    background: transparent;
    color: #7A4D3A;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10% 0 10%;
    min-height: 400px;
}
.testimonial-slide h4{
    font-size: xx-large;
    font-family: ub;
    text-align: center;
}
.testimonial-slide p{
    font-size: medium;
    font-family: or;
    font-style: italic;
    text-align: center;
}
.testimonial-slide img{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.controls {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    cursor: pointer;
    font-size: 40px;
    color: #7A4D3A;
    user-select: none;
}

.dots {
    text-align: center;
    margin: 20px 0;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    border: 2px solid #7A4D3A;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #7A4D3A;
}
#home10{
    background-color: #7A4D3A;
    padding: 5% 10% 5% 10%;
}
#logo2{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#footer,#footer-uniq{
    display: flex;
    align-items: top;
    justify-content: center;
}
#footer h3,#footer-uniq h3{
    color: white;
    font-family: psb;
    font-size: x-large;
}
#footer-uniq a,#footer a{
    color: white;
    font-family: pl;
    text-decoration: none;
}
#footer p{
    color: white;
    font-family: pl;
}
#footer-uniq a:hover,#footer a:hover{
    text-decoration: underline;
}
.fb-in{
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 5px;
}
.fb-in a img{
    width: 18px;
    height: 18px;
}
#form-1,#form-2{
    background-color: #7A4D3ABA;
    padding: 5% 15% 5% 15%;
    color: white;
}
#form-1 a,#form-2 a{
    text-decoration: none;
    color: white;
}
#form-1 a:hover,#form-2 a:hover{
    text-decoration: underline;
}
#form-1{
    margin-bottom: 15%;
}
#form-2{
    margin-top: 15%;
}
/* #math-challenge{
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 10px;
} */
/* #math-challenge label{
    color: white;
    display: inline-flex;
    column-gap: 10px;
    font-weight: 600;
} */
label{
    margin-bottom: 2%;
    font-family: pl;
}
label span{
    opacity: .9;
}
input{
    width: 100%;
}
textarea{
    width: 100%;
    resize: none !important;
}
input[type="submit"]{
    border-radius: 25px;
    width: fit-content;
    padding: 2% 3% 2% 3%;
    background-color: white;
    color: #7A4D3A;
    border: none !important;
    transition: .4s;
    font-family: pr;
}
input[type="submit"]:hover{
    color: white;
    background-color: #C6876F;
}
#home12{
    background-color: #7A4D3A;
}
#home12 p{
    color: white;
    font-family: ob;
    text-align: center;    
}
#home12 p a{
    text-decoration: none;
    color: black;
    font-family: pl;
}
#home12 p a:hover{
    text-decoration: underline;
}
#img-box {
    overflow-x: scroll;
    display: flex;
    align-items: center;
    column-gap: 25px;
    padding: 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
    touch-action: pan-x;
    border-bottom: 10px solid #7A4D3A;
}

#img-box::-webkit-scrollbar {
    display: none;
}

#img-box img,#img-box video,#img-box video{ 
    width: calc(33.33% - 25px);
    height: auto;
    user-select: none !important;
    pointer-events: none !important;
    scroll-snap-align: start;
    flex-shrink: 0;
    aspect-ratio: 1;
}
.grecaptcha-badge {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  right: 0;
}
#loader {
    margin:auto;
    vertical-align: middle;
}
@media screen and (max-width: 1040px) {
    #home6 h3{
        font-size: 3rem;
    }
    #ib-1 h1,#home4 h3{
        font-size: 2rem;
    }
}
@media screen and (max-width: 992px) {
    #home4 video {
        margin-bottom: 5%;
    }
    #g1-img{
        width: 75%;
    }
    #atag{
        text-align: center;
    }
    #home{
        padding: 5% 15% 5% 15%;
    }
    .testimonial-container {
        width: 100%;
    }
    #year-box-empty{
        display: none;
    }
    #year-box{
        margin-top: 0;
        margin-bottom: 0;
    }
    #ib-1 img{
        padding-top: 6%;
    }
}
@media screen and (max-width: 768px) {
    #img-box img,#img-box video {
        width: calc(50% - 25px);
    }
    #home6 h3{
        font-size: 2rem;
    }
    #head{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4% 8% 2% 8%;
    }
    #head a{
        text-align: center;
    }
    .testimonial-slide h4{
        font-size: larger;
        padding-top: 8%;
    }
    .testimonial-slide p{
        font-size: small;
    }
    .arrow {
        font-size: 20px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
    .content p{
        padding-right: 0;
    }
}
@media screen and (max-width: 576px) {
    #img-box img,#img-box video {
        width: 100%;
    }
    #logo2{
        margin: auto;
    }
    #head-1,#head-2{
        justify-content: center;
    }
    #ses img{
        width: 100%;
        transform: scale(.9);
    }
    #head-1 a,#head-2 a{
        text-align: center;
    }
    #home{
        padding: 5%;
    }
    #head-2{
        display: grid;
        align-items: center;
        justify-content: center;
        row-gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #footer-uniq{
        margin: 7% 0 7% 0;
        text-align: center;
    }
    .fb-in{
        justify-content: center;
    }
    .fb-in a img{
        margin: auto;
    }
    #footer p,#footer h3,#footer-uniq h3{
        text-align: center;
    }
}
@media screen and (max-width: 400px) {
    #home8 h1{
        font-size: 2rem;
    }
    #home4 h3{
        font-size: 2rem;
    }
    #g-recaptcha{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .g-recaptcha{
        transform: scale(.7);   
    }
}