* {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
body.deactive {
    overflow-y: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea,select {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 20px) calc(1em + 10px);
    background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --main_color: #324BC1;
    --second-color: #5FADFF;
    --light_color: #EEEEEE;
    --gray: #5D5856;
    --quicksand_regular: "Quicksand-SemiBold";
    --quicksand_bold: "Quicksand-Bold";
    --quicksand_medium: "Quicksand-Medium";
    --quicksand_regular: "Quicksand-Regular";
    --pp_mori_regular: "PPMori-Regular";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Quicksand-SemiBold";
    src: url("../webfonts/Quicksand-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Quicksand-Bold";
    src: url("../webfonts/Quicksand-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Quicksand-Medium";
    src: url("../webfonts/Quicksand-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Quicksand-Regular";
    src: url("../webfonts/Quicksand-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PPMori-Regular";
    src: url("../webfonts/PPMori-Regular.otf");
    font-weight: regular;
    font-style: normal;
}

/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--main_color);
    border-radius: 20px;
}
/* SCROLL-CSS */

.header_top_bar {
    background: var(--main_color);
    width: 100%;
}
.header_top_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 70px;
}
.header_top_flex .info_bar a {
    font-size: 16px;
    color: var(--white);
    font-family: var(--quicksand_bold);
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.header_top_flex .info_bar a img {
    transform: translateY(-2px);
}
.header_top_flex .info_bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 130px;
}
.header_top_flex .info_bar .info_bar_flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation_bar {
    background: var(--light_color);
    padding: 15px 0px;
}
.navigation_list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 70px;
}
.nav_item {
    font-size: 16px;
    color: var(--gray);
    font-family: var(--quicksand_bold);
    position: relative;
    z-index: 1;
    display: block;
}
.nav_item:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background-color: var(--main_color);
    z-index: -1;
    transition: all 0.25s;
    border-radius: 20px;
}
.nav_item:hover:before {
    width: 100%;
}


.heading_lg {
    font-family: var(--quicksand_bold);
    font-size: 80px;
    color: var(--black);
}
.heading_md {
    font-family: var(--quicksand_bold);
    font-size: 60px;
    color: var(--black);
}
.desc_lg {
    font-size: 20px;
    font-family: var(--pp_mori_regular);
    color: var(--black);
}
.desc_md {
    font-size: 18px;
    font-family: var(--pp_mori_regular);
    color: var(--black);
}
.desc_sm {
    font-size: 16px;
    font-family: var(--pp_mori_regular);
    color: var(--black);
}
.common_dark_btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px 15px 12px 25px;
    font-family: var(--quicksand_bold);
    font-size: 17px;
    color: var(--white);
    background-color: var(--main_color);
    border-radius: 60px;
    transition: all 0.25s;
    justify-content: space-between;
}
.common_dark_btn span {
    width: 36px;
    height: 36px;
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: all 0.25s;

}
.common_dark_btn:hover {
    color: var(--white);
    background-color: var(--black);
}
.common_dark_btn:hover span {
    transform: rotate(360deg);
}

.common_light_btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px 15px 12px 25px;
    font-family: var(--quicksand_bold);
    font-size: 17px;
    color: var(--main_color);
    background-color: var(--white);
    border-radius: 60px;
    transition: all 0.25s;
}
.common_light_btn span {
    width: 36px;
    height: 36px;
    font-size: 15px;
    color: var(--white);
    background: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: all 0.25s;
}
.common_light_btn:hover {
    color: var(--white);
    background-color: var(--black);
}
.common_light_btn:hover p {
    color: var(--white)!important;
}
.common_light_btn:hover span {
    transform: rotate(360deg);
    background-color: var(--white);
    color: var(--black);
}

.index_banner {
    padding: 190px 0px;
    position: relative;
    z-index: 1;
}
.index_banner:before {
    content: '';
    position: absolute;
    top: -53px;
    right: 0;
    width: 50%;
    height: 130%;
    background-color: var(--second-color);
    z-index: -1;
}
.banner_text_box .desc_lg {
    max-width: 770px;
}
.banner_img_box {
    max-width: 640px;
    text-align: center;
    position: relative;
    margin-left: auto;
}

.float_box_one {
    width: 200px;
    height: 70px;
    border-radius: 15px;
    background: var(--white);
    padding: 30px 20px 20px 20px;
    position: absolute;
    top: -60px;
    left: 30px;
    animation: mover 5s infinite alternate;
}
.float_box_one .heading_lg {
    text-align: center;
    font-size: 14px;
    text-decoration: underline;
}
.float_box_one .heading_lg:hover {
    color: var(--black);
}
.float_box_one img {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.float_box_two {
    top: auto;
    bottom: -30px;
    left: auto;
    right: -30px;
}
.float_box_two .heading_lg  span {
    color: var(--main_color);

}
.index_section_one {
    padding: 250px 0px 120px 0;
    background: var(--main_color);
    z-index: 999;
    position: relative;
}
.sec_one_box_main {
    background-color: var(--white);
    border-radius: 90px;
    width: 100%;
    padding: 20px 50px 40px 60px;
    position: relative;
    z-index: 1;
}
.shape {
    width: 100%;
    height: 300px;
    background-color: #ffffff;
    border-radius: 120px;
    transform: skewY(3deg);
    overflow: hidden;
    position: absolute;
    left: 0;
    top: -66px;
    z-index: -1;
}


.text_white {
    color: var(--white)!important;
}
 

.sec_two_card {
    width: 350px;
    height: 360px;
    background: var(--main_color);
    border-radius: 90px;
    border: 2px solid var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.sec_two_card.light_card {
    background: var(--second-color);
}
.sec_two_card h3 {
    font-family: var(--quicksand_bold);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
}

.sec_two_card .desc_sm {
    font-size: 16px;
    color: var(--white);
}
.sec_two_card a {
    font-size: 16px;
    font-family: var(--pp_mori_regular);
    color: var(--white);
    text-decoration: underline;
}
.sec_two_card_flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transform: translateY(-80px);
}
.transalateY {
    transform: translateY(-30px);
}





.index_section_two {
    padding: 100px 0px;
}
.video_box {
    position: relative;
}
.video_box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.video_text_box {
    background: var(--second-color);
    border-radius: 60px;
    padding: 60px 130px;
    text-align: center;
    height: 530px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video_text_box h2 {
    font-family: var(--quicksand_bold);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}
.video_text_box a {
    width: 540px;
    margin: 0 auto;
    padding-left: 85px;
    justify-content: space-between;
    text-decoration: underline;
}

.index_section_three {
    background: var(--main_color);
    padding: 100px 0px 400px 0px;
    position: relative;
}
.questions_box {
    background-color: var(--white);
    padding: 20px 55px 20px 25px;
    border-radius: 25px;
    display: flex;
    gap: 30px;
}
.questions_box img {
    width: 86px;
    height: 86px;
    object-fit: cover;
}
.questions_box .text_box {
    width: calc(100% - 86px);
}
.questions_box .text_box .desc_md {
     margin-bottom: 5px;   
}
.questions_box h4 {
    font-family: var(--quicksand_bold);
    font-size: 24px;
    color: var(--black); 
    margin-bottom: 15px;  
}
.questions_box a {
    text-decoration: underline;
}

.floated_box {
    background: var(--white);
    padding: 75px 55px;
    max-width: 1555px;
    width: 100%;
    border-radius: 60px;
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--main_color);
}
.floated_box .sec_two_card {
    width: 445px;
    margin-left: auto;
}


.index_section_four {
    padding: 380px 0px 100px 0px;
}

.section_four_card h5 {
    font-family: var(--quicksand_bold);
    font-size: 40px;
    color: var(--white);
    text-transform: capitalize; 
}
.section_four_card {
    padding: 50px 55px;
    background: var(--main_color);
    border-radius: 90px;
}
.section_four_card.light_card {
    background: var(--second-color);
}
.top_heading_flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.sub_heading {
    font-family: var(--quicksand_bold);
    font-size: 26px;
    color: var(--white); 
    text-transform: capitalize;
}
.section_four_card .img_box {
    max-width: 580px;
    margin: 0 auto;
}

.index_section_five {
    padding: 130px 0px;
    background: var(--second-color);
}

.section_five_light_box {
    padding: 30px;
    background: var(--white);
    border-radius: 25px;
}
.section_five_light_box p {
    font-family: var(--quicksand_bold);
    font-size: 24px;
    color: var(--black);
}
.section_five_light_box span i {
    font-size: 20px;
    color: var(--main_color);
    margin-right: 20px;
}
.index_section_five .img_box {
    max-width: 700px;
}

.index_section_five .common_dark_btn {
    font-size: 20px;
}




.index_section_six {
    padding: 100px 0px;
}
.gen_text_box {
    max-width: 875px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.blue_box {
    padding: 66px 28px;
    background: var(--second-color);
    border-radius: 60px;
    text-align: center;
}
.blue_text_box {
    padding: 56px 35px;
    background: var(--main_color);
    border-radius: 60px;
}
.blue_text_box h2 {
    font-family: var(--quicksand_bold);
    font-size: 28px;
    color: var(--white);
    line-height: 40px;
    margin-bottom: 25px;
}

.blue_text_box .common_light_btn {
    color: var(--black);
}
.blue_text_box .common_light_btn span {
    background-color: var(--main_color);
}
.blue_text_box .common_light_btn:hover {
    color: var(--white);
}
.blue_text_box .common_light_btn:hover span {
    background-color: var(--white)!important;
    color: var(--black)!important;
}


.footer_wrapper {
    background: var(--main_color);
    padding-top: 60px;
}
.social_links_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social_links_flex a {
    width: 270px;
    height: 70px;
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: var(--quicksand_medium);
    color: var(--white);
    border-radius: 60px;
    transition: all 0.25s;
}
.social_links_flex a:hover {
    background-color: var(--white);
    color: var(--main_color);
}
.copyright_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}
.copyright_flex a {
    font-size: 18px;
    font-family: var(--pp_mori_regular);
    color: var(--white);
}







.inner_banner {
    padding: 150px 0px;
    background-image: url(../images/about_banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.our_girls_banner {
    background-image: url(../images/our_girls_banner.jpg);
    background-size: cover;
    background-position: center;
}
.our_boys_banner {
    background-image: url(../images/our_boys_banner.jpg);
    background-size: cover;
    background-position: center;
}
.poodle_places {
    background-image: url(../images/toy-poodle-haircut.png);
    background-size: cover;
    background-position: center;
}
.deardiary_banner {
    background-image: url(../images/diary_bg.jpg);
    background-size: cover;
    background-position: center;
}
.faqs_banner {
    background-image: url(../images/faqs_banner.jpg);
    background-size: cover;
    background-position: center;
}
.inner_banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #324bc1ab;
    z-index: -1;
}
.inner_banner .desc_md {
    max-width: 800px;
    margin: 0 auto;
}
.inner_section_one {
    padding: 120px 0px;
    position: relative;
}
.row_mb {
    margin-bottom: 100px;
}
.desc_sm a {
    color: var(--main_color);
    font-weight: 700;
}
.service_card {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
}
.service_card .heading {
    font-size: 27px;
    font-family: var(--quicksand_bold);
    color: var(--black);
}
.service_card ul {
    padding-left: 20px;
}
ul .desc_sm {
    font-size: 18px;
    list-style: disc;
    margin-bottom: 5px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all 0.25s;
}
.swiper-pagination-bullet-active {
    background: var(--main_color);
    width: 50px;
    border-radius: 5px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -15px;
    text-align: center;
}
.place_card {
    display: block;
    transition: all 0.2s;
}
.swiper-slide.swiper-slide-active .place_card {
    transform: scale(1.1);
}
.poodle_slider_one,
.poodle_slider_two {
    padding: 30px 0px;
}
.top_desc {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.slider_box {
    margin-bottom: 70px;
    position: relative;
}
.park_row img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.slider_box .common_dark_btn {
    margin: 0 auto;
}
.deardiary_section_one {
    padding: 100px 0px 100px 0px;
    background: var(--main_color);
}
.diary_top_box {
    border-radius: 60px;
    width: 100%;
    padding: 40px 200px 40px 200px;
    background: var(--white);
}
.heading_sm {
    font-family: var(--quicksand_bold);
    font-size: 25px;
    color: var(--black);
}
.deardiary_section_two {
    padding: 100px 0px 100px 0px;
}
.deardiary_section_two .heading_md {
    font-size: 30px;
}
.desc_lg span,
.desc_lg a {
    color: var(--main_color);
    font-weight: 600;
}
.desc_lg a {
    text-decoration: underline;
}
.deardiary_section_two .desc_md {
    font-size: 20px;
}
.inner_container, .diary_top_box  {
    max-width: 1300px;
    margin: 0 auto;
}
.faqs_section_one .inner_container {
    max-width: 900px;
}
.teacup_info_banner .heading_lg {
    font-size: 45px;
    max-width: 880px;
    margin: 0 auto;
}
.bg_unset {
    background-image: none!important;
    background-color: var(--second-color)!important;
}
.recent_update_card_min {
    display: block;
}
.updates_section_one .text_box .desc_sm,
.recent_update_card_min .desc_sm,
.update_shortcut_box .desc_sm  {
    color: var(--gray);
    font-size: 14px;
}
.updates_section_one .text_box .desc_sm span,
.recent_update_card_min .desc_sm span {
    background: var(--main_color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 60px;
    margin-right: 5px ;
}
.recent_update_card_min .desc_sm,
.update_shortcut_box .desc_sm   {
    font-size: 14px;
}
.recent_update_card_min .desc_sm span {
    padding: 8px 15px;
    font-size: 12px;
}
.recent_update_card_min .heading_md {
    font-size: 18px;
}


.update_shortcut_box {
    display: block;
    padding: 20px 0px;
    border-bottom: 1px solid #ccc;
}
.update_shortcut_box .heading_md {
    font-size: 18px;
}

/* Container & Heading */
.updates-section {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}
.updates-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* Grid Layout */
.updates-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card Design */
.update-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.update-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.update-content {
  padding: 20px;
}

.update-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #777;
}
.update-tag {
  background: #e1f0ff;
  color: #1e88e5;
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.update-title {
  font-size: 1.2rem;
  color: #222;
  margin: 10px 0;
}
.update-desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.update-btn {
  text-decoration: none;
  color: #1e88e5;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.update-btn:hover {
  color: #0056b3;
}


.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 40px;
    overflow-x: hidden;
    padding: 10px 0px;
}
.marquee .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 25s linear infinite;
}

.marquee .content {
    color: #000000;
    font-size: 16px;
    font-family: var(--quicksand_bold);
}
.marquee .content a {
    margin: 0px 20px;
    color: #000000;
    transition: all 0.25s;
}
.marquee .content a:hover {
    color: var(--main_color);
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}