@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'Exo';
	src: url('../fonts/Exo-ThinItalic.woff2') format('woff2'),
		url('../fonts/Exo-ThinItalic.woff') format('woff');
	font-weight: 100;
	font-style: italic;
	font-display: swap;
}

html{
	overflow-x: hidden;
}

:root {
	--primary-color: #6c46ab;
	--secondary-color: #32294b;
	--yellow-color: #FFD700;
	--white-color: #FFFFFF;
	--black-color: #000000;
	--gray-color: #8f8f8f;
	--lightGyay: #393939;

	--spacing: 1rem;
	--text-shadow: 1px -1px 4px #e7f4d3;

	--font-main: 'Exo';
	--secondary-fonts: "Poppins", sans-serif;
	--heading-font: "Gloria Hallelujah";
}
/* test st */
   .sprinkle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      opacity: 0;
      animation: sprinkle-move 2s ease-in-out infinite;
    }

    /* Sprinkle colors */
    .gold { background: gold; box-shadow: 0 0 8px gold; }
    .blue { background: #4acfff; box-shadow: 0 0 8px #4acfff; }
    .white { background: white; box-shadow: 0 0 8px white; }

    /* Keyframes for curved motion */
    @keyframes sprinkle-move {
      0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
      }
      50% {
        transform: translate(80px, -30px) scale(0.8) rotate(20deg);
        opacity: 0.8;
      }
      100% {
        transform: translate(200px, 50px) scale(0.3) rotate(45deg);
        opacity: 0;
      }
    }
/* test */

body {
	font-family: var(--font-main);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}


.title{
	font-size: 52px;
    font-weight: 700;
}

header {
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
	padding: 25px 0;
}

.more_btn {
	background-color: #4B2E83;
	/* Main purple */
	color: white;
	padding: 12px 32px;
	font-family: var(--secondary-fonts);
	font-size: 15px;
	border: none;
	border-radius: 12px 12px 0 0;
	/* Rounded top corners */
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
	position: relative;
	z-index: 1;
	text-decoration: none;
	overflow: visible;
}

/* Bottom-right dark shadow */
.more_btn::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 12px;
	background-color: var(--secondary-color);
	clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
	z-index: -1;
}

.chat_now {
	background-image: url(../images/btn-bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 10px;
	color: var(--white-color);
	width: 125px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: var(--secondary-fonts);
	font-size: 16px;
	font-weight: 600;

}


.get_now_btn {
	background-image: url(../images/btn2.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 10px;
	color: var(--white-color);
	width: 200px;
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: var(--secondary-fonts);
	font-size: 16px;
	font-weight: 600;
}

.get_now_btn:hover, .chat_now:hover{
	color: var(--yellow-color);
}

.Book_Form {
	width: 70%;
	margin: 0 auto;
}

.Form_Sec h3 {
	font-size: 42px;
	text-align: center;
	color: var(--white-color);
	font-weight: 700;
}

.Form_Sec p {
	color: var(--white-color);
	font-size: 16px;
	text-align: center;
	font-family: var(--secondary-fonts);
}


.logo {
	width: 150px;
}

.btn {
	border-radius: 0;
	padding: 10px 15px;
}

.BtnSec {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 9;
}


/*  Banner_Sec Css ST */
.Banner_Sec {
	padding:75px 0 47px 0;
	position: relative;
	background-image: url('../images/back-cover.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 1235px;
}


/* .Banner_Sec::before{
	position: absolute;
	content: '';
	background-image: url(../images/border.png);
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 315px;
}  */


.sprinkle_img {
    position: absolute;
    right: 80px;
    width: 260px;
    top: 85px;
	animation: floatBear 4s ease-in-out infinite;
}


.LeftContent_Banner {
	padding: 20px 45px 0px 10px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.LeftContent_Banner h1 {
	font-size: 60px;
	text-shadow: var(--text-shadow);
	font-weight: 700;
}


.LeftContent_Banner h2 {
	font-size: 40px;
	text-shadow: var(--text-shadow);
	text-align: center;
	font-weight: 700;
	line-height: 51px;
}


.LeftContent_Banner h3 {
	font-size: 35px;
	text-shadow: var(--text-shadow);
	font-weight: 700;
}

.Form_Sec {
	padding: 70px 25px 7px;
	position: relative;
	background: url('../images/form-bg.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 100%;
	margin-top: 6rem;
}

.Form_Sec h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
	line-height: 30px;
	padding: 0;
}

.Form_Sec .form-control {
	border-radius: 2px;
	font-size: 12px;
	height: 45px;
	color: #808080;
	background-color: #efefef;
	border-radius: 25px;
	font-family: var(--secondary-fonts);
	font-weight: 500;
}

.label {
	margin-bottom: 10px;
	color: var(--white-color);
	font-size: 16px;	
	text-align: center;
	font-family: var(--secondary-fonts);
}

.Form_Sec textarea {
	min-height: 110px;
	padding-top: 11px;
}

.form-select {
	font-size: 12px;
	height: 45px;
	background-color: #efefef;
	border-radius: 25px;
	font-family: var(--secondary-fonts);
	font-weight: 500;
	color: #808080;
}

.submit_btn {
	background-color: var(--secondary-color);
	color: var(--white-color);
	padding: 12px 26px;
	border-radius: 5px;
	font-weight: 600;
	margin: 0 auto;
	float: none;
	display: table;
	border-radius: 25px;
}

.submit_btn:hover {
	background-color:  var(--yellow-color);	color: var(--black-color);
}

/* About Sec Css  */

.AboutSec{
	position: relative;
	background-image: url('../images/about-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	top:0;
	left:0;
	margin-top: -290px;
}

.AboutSec h3{
	font-size: 40px;
    text-shadow: var(--text-shadow);
    font-weight: 700;
    line-height: 51px;
}

.AboutContent {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10rem;
}

.AboutContent p{
	color: var(--black-color);
	font-size: 16px;
	font-family: var(--secondary-fonts);
	line-height: 28px;
	font-weight: 400;
	padding: 17px 0;
}

.BearKidOne{
	position: absolute;
    top: 109px;
    right: 84px;
	animation: floatBear 4s ease-in-out infinite;
}

.BearKidTwo{
	position: absolute;
    bottom: 109px;
    right: 84px;
	animation: floatBear 4s ease-in-out infinite;
}

.BearKidOne img, .BearKidTwo img{
	width: 150px;
}


.section{
	padding: 55px 0;
}

.pulse{
	animation: pulse 2s infinite ease-in-out;
}

/* Portfolio_Sec Css St */
.Portfolio_Sec{
	padding: 45px;
	background-image: url('../images/bg1.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	overflow: hidden;
}

.Portfolio_Content{
	padding: 10rem 0;
}

.Portfolio_Sec h3{
	font-size: 40px;
	color : var(--white-color);
	font-weight: 700;
	line-height: 51px;
	text-align: center;
}

.small_para {
    color: var(--white-color);
    text-align: center;
    font-family: var(--font-main);
    font-weight: 400;
    margin: 1.8rem 0 3rem;
    line-height: 31px;
	font-size: 21px;
}

.port_img{
	margin: 25px 0;
	overflow: hidden; /* Hides overflow when image scales */
    position: relative;
	padding: 0 15px;
}

.port_img img{
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
}

.port_img:hover img {
    filter: grayscale(100%);
}

.port_img:hover img {
    box-shadow: 0 0 20px #4d2d7e;
}

.port_img:hover img {
    transform: scale(1.05) rotate(2deg);
}


.color-black{
	color:var(--black-color)
}

/* Portfolio Css End  */

/* Book Publish Css Start */

.Book_Publish_Sec {
    background-image: url(../images/bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    min-height: 740px;
    background-position: 0 -212px;
}

html .Blue_Bg{
	    background-image: url(../images/bg5.png);
}

html .Purple_Bg{
    background-image: url(../images/bg6.png);
}


/* Testimonial_Sec Css ST */

.Testimonial_Sec{
	background-image: url('../images/bg3.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5rem 0;
	position: relative;
	min-height: 740px;
}

.Testimonial_Sec .slick-dots li button:before{
	color: var(--secondary-color) !important;
	opacity: 9;
	font-size: 14px;
}

.Testimonial_Sec li.slick-active{
	width: 30px;
	height: 10px;
	border-radius: 5px;
	background: var(--secondary-color) !important;
}

html .Testimonial_Sec .slick-dots .slick-active button:before{
	color: transparent !important
}


.Testimonial_Sec .slick-dots{
	display: flex;
	align-items: center;
	justify-content: center;
}

.Testimonial_Sec .slick-dots{
	bottom: -90px;
}

.Testimonial_Box {
	background-image: url(../images/bg4.png);
	height: 501px !important;
	padding: 5rem 3rem 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: relative;
}

.Testimonial_Sec .slick-slide{
	margin: 0 25px;
}

.Testimonial_Sec h3{
	padding-bottom: 2rem;
	font-size: 70px;
}

.Testimonial_Sec h4{
	font-size: 35px;
	font-weight: 500;
}


.Testimonial_Sec .small_title{
	font-weight: 700;
	color:var(--black-color)
}	

.bio_data {
   display: flex;
    position: absolute;
    bottom: 53px;
    left: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.User{
	width: 30px;

}

/* ContactSec Css St */
.Contact_Sec{
	background-color: #6d47ab;
	padding-bottom: 0;
	position: relative;
}

.Contact_Sec:before{
	position: absolute;
	content:'';
	background-image: url('../images/Left-kids.png');
	background-repeat: no-repeat;
	bottom: 0;
    left: 0;
    background-size: 70%;
    width: 718px;
    height: 527px;
}

.Contact_Sec:after{
	position: absolute;
	content:'';
	background-image: url('../images/Right-kids.png');
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
	background-size: 100%;
	width: 472px;
	height: 536px;
}

.Content_Sec{
	background-image: url('../images/board.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 8rem;
}

.Content_Sec .title{
	color:var(--white-color);
	text-align: center;
	font-size: 70px;
}
.Content_Sec p {
    text-align: center;
    color: var(--white-color);
    font-size: 25px;
    padding: 20px 0;
    font-weight: 500;
}

.Contact_Sec .form-control{
	border-radius: 10px;
	height: 45px;
}

.Contact_Sec textarea{
	min-height: 150px;
}

.Contact_Sec .form-select{
	background-color: #FFFFFF;
}

.Contact_Details {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 20px 0 20px;
}

.Contact_Details span{
	text-align: center;
	color:#FFFFFF;
	font-size: 14px;
	display: block;	
}

.Contact_Details a{
	text-align: center;
	color:var(--white-color);
	font-weight: 600;
	font-size: 30px;
	text-decoration: none;
}


.Contact_Details a:hover{
	color:var(--yellow-color)
}

/* Copy Right */

.CopyRight{
	background-color: var(--black-color);
	padding: 20px 10px;
}

.CopyRight p{
	color:var(--white-color);
	margin:0;
	font-size: 14px;
}


ul.List {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	margin:0;
	padding:0;
}

.List li{
	list-style: none;
}

.List li a{
	color:var(--white-color);
	text-decoration: none;
		font-size: 14px;
}

.List li a:hover{
	color:var(--yellow-color)
}

/* Bubbles Animation Css St */


    .droplet {
      width: 50px;
      height: 50px;
      background: url('../images/Icons/droplet-01.png') no-repeat center/contain;
      animation: fall 4s infinite ease-in;
      position: absolute;
      top: 0px;
	  left: 5%;
    }

	 .droplet_two {
      width: 40px;
      height: 40px;
      background: url('../images/Icons/droplet-02.png') no-repeat center/contain;
      animation: fall 4s infinite ease-in;
      position: absolute;
      top: 0;
	  left: 30%;
    }

	 .droplet_three {
      width: 30px;
      height: 30px;
      background: url('../images/Icons/droplet-03.png') no-repeat center/contain;
      animation: fall 8s infinite ease-in;
      position: absolute;
      top: 0;
	  right:30%;
    }

	 .droplet_four {
      width: 50px;
      height: 40px;
      background: url('../images/Icons/droplet-01.png') no-repeat center/contain;
      animation: fall 9s infinite ease-in;
      position: absolute;
      top: 0px;
	  right: 5%;
    }

	/* Testimonial_Sec Css end  */



    @keyframes fall {
      0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
      }
      70% {
        transform: translateY(80vh) scaleY(1.2);
        opacity: 1;
      }
     
      100% {
        transform: translateY(100vh) scaleY(0.8);
        opacity: 0;
      }
    }
/* Bubbles aNIMATION */

/* Animation */
@keyframes floatBear {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Phone icon animation css start */
@keyframes slow-ring {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(15deg);
	}

	50% {
		transform: rotate(-15deg);
	}

	75% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.phone-ring {
	display: inline-block;
	animation: slow-ring 2s ease-in-out infinite;
	transform-origin: center;
}

/* Phone icon animation css end */
/* Footer Css St */

.footer-section {
    padding: 2rem 0;
}

.f-menus h3 {
    padding-bottom: 15px;
}

.footer-section a, .footer-section p {
    color: #7b7b7b;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
}

.f-menus a {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
	text-decoration: none;
}

.address-email-phone a{
	text-decoration: none;
}

.imgspace-text img {
    margin-right: 10px;
    filter: brightness(0);
}

.bottom-line {
    background-color: #27295c;
    padding: 10px 0;
}

.copy_right_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom-line p {
    color: #FFFFFF;
    text-align: center;
    font-size: 13px;
    margin: 0;
    padding: 0;
}
.bottom_menu {
    display: flex;
    margin: 0;
    gap: 20px;
    padding-right: 70px;
}
.bottom_menu li {
    list-style: none;
}
.bottom_menu li a {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
}

.posiion_relative{
	position: relative;
	z-index: 99;
}

/* Footer Css End */
/* === Media Query === */

@media only screen and (max-width: 1366px) {
	.title, .Testimonial_Sec h3, .LeftContent_Banner h1{font-size: 40px;}
	.AboutSec h3, .Form_Sec h3{font-size: 35px;}
	.small_para, p {font-size: 15px;}
	.Form_Sec p, .label{font-size: 14px;}
	.Form_Sec{margin:0}
	.LeftContent_Banner{padding-top: 120px;}
    .BearKidOne img, .BearKidTwo img { width: 120px;}
	.BearKidTwo{bottom:0}
	.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd; min-height: auto;}
	.Testimonial_Box{padding: 3rem 2rem 0; min-height: 420px;}
	.bio_data{gap: 10px}
	.bio_data{bottom: 65x;}
	.bio_data h5{font-size: 14px;}
	.User { width: 30px;}
	.Banner_Sec { padding: 9rem 0 47px 0;}
	.Contact_Sec:before{width: 300px; height: 300px; background-size: 100%;}
	.Contact_Sec:after{width: 300px; height: 300px; background-size: 100%;}

	
}

@media only screen and (max-width: 1024px) {
	.title, .Testimonial_Sec h3{font-size: 40px;}
	.small_para, p {font-size: 17px;}
	.Form_Sec{margin:0}
	.LeftContent_Banner{padding-top: 120px;}
	.BearKidTwo{bottom:0}
	.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd; min-height: auto;}
	.Testimonial_Box{padding: 3rem 2rem 0; min-height: 420px;}
	.LeftContent_Banner {  padding-top: 20px; }
	.sprinkle_img {position: relative; right:0; top:0;}
	.Content_Sec{padding: 1rem;}
	.Contact_Details a{font-size: 15px;}
	}


@media only screen and (max-width: 767px) {

.title, .Testimonial_Sec h3{font-size: 30px;}
.Testimonial_Sec h4, .Portfolio_Sec h3{font-size: 20px; line-height: normal;}
.Banner_Sec { padding: 2rem 0 47px 0; }
.AboutSec{margin-top: -148px;}

.AboutContent p, p, .small_para{font-size: 14px;}


header { position: relative; background: #a1e6e3; padding: 20px 0 1px 0;}
.logo {  width: 150px; margin: 8px auto; float: none; display: table;}
.Landing_Top_Area .col.d-grid.justify-content-end {  justify-content: center !important;}
.LeftContent_Banner h1 { font-size: 27px;  margin-top: 20px;}
.LeftContent_Banner h2{font-size: 25px; line-height: 35px;}
.Form_Sec{margin-top: 0;}
.BearKidOne img, .BearKidTwo img { width: 88px;}
.BearKidOne{right: 35px; z-index: 99; top:80px}
.BearKidTwo{display: none;}
.AboutSec h3{font-size: 26px; line-height: 41px;}


.Portfolio_Sec{	background-color: #6d47ab; background-image: inherit;}
.Book_Publish_Sec {background-image: inherit;  background-color: #f8efdd;}
.section{padding: 30px;}
.Testimonial_Box { padding: 3rem 2rem 0;}
.Portfolio_Content{padding: 2rem 0}

.sprinkle_img{position: relative; top:0; right:0}
.Content_Sec {background-image: inherit; background-color: #5d7b50;}
.Content_Sec{padding: 25px}
.Content_Sec .title{font-size: 20px;}
.Book_Form{width: 100%;}
.Contact_Details a{font-size: 16px;}
.CopyRight p{text-align: center; font-size: 14px;}
ul.List{ justify-content: center ; font-size: 14px; margin: 20px 0}
.Testimonial_Box{background-size: cover;}
.Testimonial_Sec .slick-dots { bottom: -61px;}
.Banner_Sec .Form_Sec { padding: 65px;}
.Contact_Sec:before, .Contact_Sec:after{display: none;}
.bottom_menu, .copy_right_bottom{display: block;}
.bottom_menu{padding:0}
.bottom_menu li a{font-size: 14px;}
.bottom-line p {
    padding-right: 81px;
    padding-bottom: 20px;
    padding-top: 20px;
	text-align: left;
}
}