:root {
  --primary-font-family: "Baloo Bhaijaan 2", sans-serif;
  --primary-color: #007fdd; /* Vibrant Blue */
  --secondary-color: #00b0f0; /* Lighter Cyan Blue */
  --tertiary-color: #0056a3; /* Darker Navy Blue */
  --accent-color: #00d8f9; /* Bright Aqua */
  --light-color: #6ad2f9; /* Soft Light Blue */
  --dark-color: #003366; /* Deep Navy Blue */
}

.col_1 {
  width: 8.3333333333%;
  padding: 0 15px;
}

.col_2 {
  width: 16.6666666667%;
  padding: 0 15px;
}

.col_3 {
  width: 25%;
  padding: 0 15px;
}

.col_4 {
  width: 33.3333333333%;
  padding: 0 15px;
}

.col_5 {
  width: 41.6666666667%;
  padding: 0 15px;
}
@media (max-width: 460px) {
  .col_5 {
    width: 100%;
  }
}

.col_6 {
  width: 50%;
  padding: 0 15px;
}
@media (max-width: 460px) {
  .col_6 {
    width: 100%;
  }
}

.col_7 {
  width: 58.3333333333%;
  padding: 0 15px;
}

.col_8 {
  width: 66.6666666667%;
  padding: 0 15px;
}

.col_9 {
  width: 75%;
  padding: 0 15px;
}

.col_10 {
  width: 83.3333333333%;
  padding: 0 15px;
}

.col_11 {
  width: 91.6666666667%;
  padding: 0 15px;
}

.col_12 {
  width: 100%;
  padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  white-space: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font-family);
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
}

textarea {
  font-family: var(--primary-font-family);
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: none;
}

.container {
  width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1160px) {
  .container {
    width: 1024px;
  }
}
@media (max-width: 1040px) {
  .container {
    width: 740px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.justify-content-space-between {
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.txt_color {
  color: var(--secondary-color);
}

section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.rain {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

@keyframes drop {
  0% {
    transform: translateY(-100vh) translateX(0);
  }
  100% {
    transform: translateY(100vh) translateX(var(--translateX, 0));
  }
}
.raindrop {
  position: absolute;
  top: -10vh; /* Start off-screen */
  background: #fff;
  animation: drop linear infinite;
}

.layer1 {
  --translateX: -10px;
  animation-duration: 10s;
  border-radius: 100%;
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

.layer2 {
  --translateX: -5px;
  animation-duration: 20s;
  border-radius: 100%;
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

.layer3 {
  --translateX: 5px;
  animation-duration: 15s;
  border-radius: 100%;
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

.layer4 {
  --translateX: 10px;
  animation-duration: 40s;
  border-radius: 100%;
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

.main_header {
  position: fixed;
  top: 0;
  width: 100%;
  right: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .main_header {
    height: 100px;
    background-color: #f6f6fe;
  }
}
.main_header.scrolled {
  background-color: #f6f6fe;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
.main_header .header_content {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
}
@media (max-width: 1024px) {
  .main_header .header_content .brand_wrapper {
    position: absolute;
  }
}
.main_header .header_content .brand_wrapper img {
  height: 70px;
  display: block;
}
@media (max-width: 768px) {
  .main_header .header_content .brand_wrapper img {
    max-width: calc(100% - 60px);
  }
}

.main_nav_icon {
  display: none;
  position: absolute;
  top: 28px;
  right: 20px;
  background-color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.main_nav_icon span {
  position: absolute;
  height: 1px;
  width: 16px;
  background-color: #fff;
  display: block;
  left: 16px;
}
.main_nav_icon span:nth-child(1) {
  top: 16px;
}
.main_nav_icon span:nth-child(2) {
  top: 24px;
}
.main_nav_icon span:nth-child(3) {
  top: 32px;
}
@media (max-width: 1040px) {
  .main_nav_icon {
    display: block;
  }
}

@media (max-width: 1040px) {
  .main_menu_wrapper {
    width: 100%;
    height: 84px;
  }
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav {
    display: none;
  }
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav.open {
    display: block;
    background-color: var(--primary-color);
    padding: 15px;
    margin: 90px 0 0 0;
    height: 100vh;
    position: fixed;
    width: 100%;
    left: 0;
  }
}
.main_menu_wrapper nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul {
    gap: 0 10px;
  }
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul li {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #1e5354;
    padding-bottom: 10px;
  }
  .main_menu_wrapper nav ul li:last-child {
    border-bottom: 0;
    border: none;
    margin-bottom: 0;
  }
}
.main_menu_wrapper nav ul a {
  padding: 5px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  display: block;
  background: none;
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul a {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.main_menu_wrapper nav ul a span {
  padding: 0 5px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  display: inline-block;
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul a {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
  }
}
.main_menu_wrapper nav ul a.active-section {
  color: var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30px;
}
@media (max-width: 768px) {
  .main_menu_wrapper nav ul a.active-section {
    background: none;
    color: #fff;
  }
}

.section {
  position: relative;
  z-index: 2;
}

section.hero {
  position: relative;
  padding: 80px 0 60px;
  min-height: 100vh;
  background-image: linear-gradient(180deg, rgba(234, 234, 253, 0.8) 50%, rgba(236, 234, 253, 0.05) 100%);
}
section.hero .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  section.hero {
    background-position: left bottom;
    height: inherit;
    min-height: inherit;
  }
}
section.hero .headline_container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  section.hero .headline_container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  section.hero .headline_container {
    padding-top: 60px;
  }
}
section.hero .headline_container .headline {
  text-align: center;
}
section.hero .headline_container .headline h1 {
  font-size: 62px;
  color: var(--secondary-color);
}
@media (max-width: 768px) {
  section.hero .headline_container .headline h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  section.hero .headline_container .headline h1 {
    font-size: 26px;
  }
}
section.hero .headline_container .headline h2 {
  font-size: 50px;
  color: var(--secondary-color);
  width: 60%;
  margin: auto;
  line-height: 1.2;
}
@media (max-width: 1040px) {
  section.hero .headline_container .headline h2 {
    font-size: 40px;
    width: 100%;
  }
}
section.hero .headline_container .headline p {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  width: 90%;
  margin: 30px auto 0;
}
@media (max-width: 1040px) {
  section.hero .headline_container .headline p {
    width: 100%;
    font-size: 22px;
  }
}
section.hero .headline_container .headline .line_tagline {
  margin-bottom: 40px;
}
section.hero .actions_list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1040px) {
  section.hero .actions_list {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  section.hero .actions_list {
    width: 100%;
    justify-content: center;
  }
}
section.hero .actions_list a {
  transition: all 0.5s ease-in;
  font-size: 18px;
  background: var(--secondary-color);
  padding: 10px 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  height: 50px;
  font-weight: 600;
}
section.hero .actions_list a:first-child {
  background-color: var(--primary-color);
}
@media (max-width: 480px) {
  section.hero .actions_list a {
    font-size: 16px;
  }
}
section.hero .actions_list a:hover {
  background: var(--dark-color);
}
section.hero .actions_list a svg {
  height: 24px;
}
section.hero svg.shape_animated {
  fill: rgba(247, 249, 253, 0.678);
  width: 80%;
  transform: rotate(-120deg);
  text-align: inherit;
  line-height: 22px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  top: -200px;
  right: 250px;
  z-index: 1;
}

.studio-programs {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}
.studio-programs h2.title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .studio-programs h2.title {
    font-size: 32px;
    padding-left: 0;
  }
}
.studio-programs .content .content_item {
  margin-bottom: 20px;
  background: #ffffff;
  padding: 45px 38px;
  box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: 0.5s;
  margin-top: 100px;
}
.studio-programs .content .content_item:hover {
  transform: translateY(-20px);
}
.studio-programs .content .content_item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.studio-programs .content .content_item .icon_wrapper {
  margin-top: -160px;
}
@media (max-width: 768px) {
  .studio-programs .content .content_item .icon_wrapper {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .studio-programs .col_6 {
    width: 100%;
  }
}
.studio-programs .content_wrapper {
  padding-left: 38px;
}
@media (max-width: 1040px) {
  .studio-programs .content_wrapper {
    width: 100%;
  }
}
.studio-programs .img_wrapper {
  position: relative;
  height: auto;
}
@media (max-width: 1040px) {
  .studio-programs .img_wrapper {
    display: none;
  }
}
.studio-programs .slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.studio-programs .slideshow-image.active {
  opacity: 1;
}

.section-philosophy {
  text-align: center;
  background-image: linear-gradient(to right top, #003366, #03407b, #064e91, #075ca7, #076bbe, #0379cc, #0087da, #0095e7, #1ba5ed, #36b4f1, #50c3f5, #6ad2f9);
  padding: 120px 0;
}
.section-philosophy h2.title {
  font-size: 42px;
  color: #fff;
}
@media (max-width: 768px) {
  .section-philosophy h2.title {
    font-size: 32px;
  }
}
.section-philosophy p {
  color: #fff;
  font-size: 22px;
  width: 80%;
  margin: 30px auto 0;
}
@media (max-width: 1040px) {
  .section-philosophy p {
    width: 100%;
  }
}

.section-how-we-do-it {
  padding: 120px 0;
  background-color: #fbfbfb;
}
.section-how-we-do-it .title_wrapper {
  text-align: center;
  margin-bottom: 60px;
}
.section-how-we-do-it .title_wrapper h2.title {
  font-size: 24px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .section-how-we-do-it .title_wrapper h2.title {
    font-size: 32px;
  }
}
.section-how-we-do-it .title_wrapper h3.title {
  font-size: 42px;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .section-how-we-do-it .title_wrapper h3.title {
    font-size: 32px;
  }
}
@media (max-width: 1040px) {
  .section-how-we-do-it .col_4 {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section-how-we-do-it .col_4 {
    width: 100%;
  }
}
.section-how-we-do-it .container_item {
  height: 100%;
  padding: 45px 38px;
  box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: 0.5s;
}
.section-how-we-do-it .container_item:hover {
  transform: translateY(-20px);
}
.section-how-we-do-it .container_item .container_icon {
  position: relative;
  margin-bottom: 30px;
}
.section-how-we-do-it .container_item .container_icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/s_img_layer_1-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5;
}
.section-how-we-do-it .container_item .container_icon img {
  width: 80%;
  display: block;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .section-how-we-do-it .container_item .container_icon img {
    width: 200px;
  }
}
.section-how-we-do-it .container_item .container_icon_1:after {
  transform: rotate(30deg);
}
.section-how-we-do-it .container_item .container_icon_2:after {
  transform: rotate(180deg);
}
.section-how-we-do-it .container_item h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
.section-how-we-do-it .container_item p {
  font-size: 18px;
  display: flex;
  gap: 10px;
}
.section-how-we-do-it .container_item p:before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--secondary-color);
  display: block;
  margin-top: 5px;
}

.section-process {
  padding: 120px 0;
}
.section-process .title_wrapper {
  text-align: center;
  margin-bottom: 60px;
}
.section-process .title_wrapper h2.title {
  font-size: 24px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .section-process .title_wrapper h2.title {
    font-size: 32px;
  }
}
.section-process .title_wrapper h3.title {
  font-size: 42px;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .section-process .title_wrapper h3.title {
    font-size: 32px;
  }
}
.section-process .title_wrapper p {
  font-size: 20px;
  width: 80%;
  margin: auto;
}
@media (max-width: 1040px) {
  .section-process .title_wrapper p {
    width: 100%;
  }
}
@media (max-width: 1040px) {
  .section-process .col_4 {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section-process .col_4 {
    width: 100%;
  }
}
.section-process .container_item {
  height: 100%;
  background: #ffffff;
  padding: 45px 38px;
  box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: 0.5s;
}
.section-process .container_item:hover {
  transform: translateY(-20px);
}
.section-process .container_item h4 {
  font-size: 28px;
  margin-bottom: 10px;
}
.section-process .container_item p {
  font-size: 18px;
  display: flex;
  gap: 10px;
}
.section-process .container_item p:before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--secondary-color);
  display: block;
  margin-top: 5px;
}
.section-process .icon_num {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: var(--primary-color);
  border-radius: 100%;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-process .container_icon img {
    width: 200px;
  }
}

.section-services {
  padding: 120px 0;
}
.section-services .title_wrapper {
  text-align: center;
  margin-bottom: 60px;
}
.section-services .title_wrapper h2.title {
  font-size: 24px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .section-services .title_wrapper h2.title {
    font-size: 32px;
  }
}
.section-services .title_wrapper h3.title {
  font-size: 42px;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .section-services .title_wrapper h3.title {
    font-size: 32px;
  }
}
.section-services .title_wrapper p {
  font-size: 20px;
  width: 80%;
  margin: auto;
}
@media (max-width: 1040px) {
  .section-services .title_wrapper p {
    width: 100%;
  }
}
.section-services .col_6 {
  margin-bottom: 30px;
}
@media (max-width: 1040px) {
  .section-services .col_6 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.section-services .container_item {
  height: 100%;
  background: #ffffff;
  padding: 45px 38px;
  box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  transition: 0.5s;
  display: flex;
  gap: 30px;
}
@media (max-width: 460px) {
  .section-services .container_item {
    flex-wrap: wrap;
  }
}
.section-services .container_item .container_icon {
  width: 40%;
  min-width: 40%;
}
@media (max-width: 1040px) {
  .section-services .container_item .container_icon {
    width: 30%;
    min-width: 30%;
  }
}
@media (max-width: 460px) {
  .section-services .container_item .container_icon {
    width: 100%;
    min-width: 100%;
  }
  .section-services .container_item .container_icon img {
    width: 80%;
    margin: auto;
    display: block;
  }
}
.section-services .container_item h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.section-services .container_item p {
  font-size: 18px;
  display: flex;
  gap: 10px;
}
.section-services .container_item p:before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--secondary-color);
  display: block;
  margin-top: 5px;
}

.main_footer {
  padding: 160px 0 60px 0;
  background-image: url(../images/footer_img.png);
  background-size: cover;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: center center;
}
.main_footer .container {
  position: relative;
  z-index: 2;
}
.main_footer .brand_wrapper {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .main_footer .brand_wrapper {
    margin-top: 60px;
  }
}
.main_footer .brand_wrapper img {
  height: 80px;
}
.main_footer .company_details span {
  display: block;
  text-align: center;
}
.main_footer .company_details span strong {
  display: block;
}
.main_footer .contact_description {
  margin-top: 30px;
}
@media (max-width: 1040px) {
  .main_footer .col_6 {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .main_footer .col_6 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main_footer #contact {
    width: 100%;
    padding: 0;
  }
}

.contact-form-lp {
  text-align: left;
}
@media (max-width: 768px) {
  .contact-form-lp {
    margin-top: 60px;
  }
}
.contact-form-lp .head_section h3 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.contact-form-lp .head_section p {
  font-size: 18px;
}
.contact-form-lp .third_cols {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .contact-form-lp .third_cols {
    display: block;
  }
}
.contact-form-lp label {
  color: #fff;
  margin-top: 5px;
}
.contact-form-lp .wpcf7-form input[type=text], .contact-form-lp .wpcf7-form input[type=tel], .contact-form-lp .wpcf7-form input[type=email] {
  padding: 5px 15px;
  width: 100%;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--primary-font-family);
}
.contact-form-lp br {
  display: none;
}
.contact-form-lp .wpcf7-form textarea {
  padding: 5px 15px;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--primary-font-family);
  height: 120px;
}
.contact-form-lp .wpcf7-form input[type=submit] {
  padding: 10px 30px;
  border-radius: 15px;
  font-family: var(--primary-font-family);
  border: none;
  background-color: #fff;
  font-size: 18px;
  cursor: pointer;
  -webkit-appearance: none;
  color: #000;
  width: 100%;
  background-color: var(--secondary-color);
  color: #fff;
  background-image: linear-gradient(to right, #003366, #00598f, #0081b6, #00acda, #00d8f9);
}
.contact-form-lp .social_media_wrapper {
  margin-top: 20px;
}
.contact-form-lp .social_media_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-form-lp .social_media_wrapper ul li {
  list-style: none;
}
.contact-form-lp .whatsapp_email__wrapper {
  padding: 20px 0;
  gap: 10px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-form-lp .whatsapp_email__wrapper a {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 18px;
}
.contact-form-lp .whatsapp_email__wrapper .num {
  display: inline-block;
  direction: ltr;
}

.copyright {
  text-align: center;
  background: #f7f9fd;
}
.copyright .container {
  border-top: 1px solid rgb(233, 233, 233);
  padding: 20px 0;
}/*# sourceMappingURL=style.css.map */