@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* Emplyee login and registration */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        :root {
            --primary-color: #4A90E2;
            --secondary-color: #50E3C2;
            --text-color: #333;
            --bg-color: #f0f2f5;
            --card-bg-color: #ffffff;
            --input-border-color: #ddd;
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .body {
            font-family: 'Poppins', sans-serif;
            /*background-color: var(--bg-color);*/
            display: flex;
            justify-content: center;
            align-items: center;
            height: 850px;
            margin: 0;
            overflow: hidden;
            position: relative;
        }

        /* Background animation */
        .background-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .background-circles li {
            position: absolute;
            display: block;
            list-style: none;
            width: 20px;
            height: 20px;
            background: rgba(74, 144, 226, 42%);
            animation: animate 25s 
                linear(0 0%, 0.85 34.71%, 0.2 87.06%, 1 100%) infinite;
            bottom: -150px;
        }

        .background-circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
        .background-circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
        .background-circles li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
        .background-circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
        .background-circles li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
        .background-circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
        .background-circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
        .background-circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
        .background-circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
        .background-circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

        @keyframes animate {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 60%; }
        }

        /* Login & Registration Container */
        .container-wrapper {
            perspective: 1000px; /* For 3D flip effect */
        }

        .flip-container {
            width: 400px;
            height: 655px; /* Increased height for registration form */
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s;
        }
        
        .flip-container.flipped {
            transform: rotateY(180deg);
        }

        .login-container, .register-container {
            width: 100%;
            height: 100%;
            background-color: var(--card-bg-color);
            padding: 45px;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            text-align: center;
            position: absolute;
            backface-visibility: hidden;
            overflow: hidden;
            animation: slideIn 0.8s ease-out;
            box-sizing: border-box;
        }

        .login-container {
            transform: rotateY(0deg);
            z-index: 2;
        }

        .register-container {
            transform: rotateY(180deg);
            z-index: 1;
        }

        .login-container::before, .register-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px 15px 0 0;
            animation: stripeLoad 2s ease-in-out infinite alternate;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes stripeLoad {
            from { background-position: 0% 50%; }
            to { background-position: 100% 50%; }
        }

        .headertag {
            margin-bottom: 25px;
            color: var(--text-color);
            font-size: 2em;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
            position: relative;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-color);
            font-weight: 400;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

         /* Password container with icon */
        .password-container {
            position: relative;
        }

        .password-container input {
            padding-right: 45px; /* Make space for the icon */
        }
        
        .password-container .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
            transition: color 0.2s ease;
        }
        
        .password-container .toggle-password:hover {
            color: #555;
        }
        
        .input {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--input-border-color);
            border-radius: 8px;
            box-sizing: border-box;
            font-size: 16px;
            color: var(--text-color);
            background-color: #fafafa;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
        }

        .form-button {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.1s ease;
            box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
        }

        .form-button:hover {
            background-color: #3a80d1;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
        }

        .form-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 5px rgba(74, 144, 226, 0.2);
        }

        .forgot-password {
            margin-top: 20px;
            display: block;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: #3a80d1;
            text-decoration: underline;
        }

        .toggle-link {
            display: block;
            margin-top: 12px;
            font-size: 0.9em;
            color: #888;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .toggle-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .toggle-link a:hover {
            text-decoration: underline;
        }



/* end Login And Registration */



body {
  font-family: "Poppins", sans-serif;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h1 {
  position: relative;
  font-weight: bold;
  color:#318ec7;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  color:#318ec7;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*background-color: #7335b7;*/
  background-color:#cfe7d9;
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 45px 0;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #212529;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
    background-color: #318ec7;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #f8842b;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #318ec7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid darkgray;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #0b3f8c;
}

.slider_section .detail-box h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 15px;
  background-color: #318ec7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #7596c7;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #cfe7d9;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 17px;
  height: 18px;
  background-color: #318ec7;
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 150px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
      color: #ff4e1b;
}

.service_section .box .detail-box a {
  color: #57655c;
}

.service_section .box:hover {
  color: #ffffff;
}

.service_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: /*#0b3f8c;*/#318ec7;
}

.service_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #318ec7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #8ba9d7;
}

.service_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.about_section {
  background-color: #cfe7d9;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  margin-top: 15px;
  color: #212529;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #318ec7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #92b3e4;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #cfe7d9;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.case_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
  color: #ff4e1b;
}
.case_section .box .detail-box h6 {
  font-weight: bold;
  color: #ff4e1b; 
  font-size: larger;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #cfe7d9;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #cfe7d9;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #cfe7d9;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #ff4e1b;
}

.contact_section {
  position: relative;
}

.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: transparent;
  outline: none;
  color: #000000;
  border: 1px solid #a5a5a5;
}

.contact_section input::-webkit-input-placeholder {
  color: #1c1b1b;
}

.contact_section input:-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::placeholder {
  color: #1c1b1b;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 65px;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #7335b7;
  color: #fff;
  margin-top: 10px;
}

.contact_section button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map {
  height: 100%;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.footer_container {
  background-color: #cfe7d9;
  color: #212529;
  border-radius: 350px 0 350px 0;
  padding-top: 145px;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #3694c9;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact_link_box {
  color: #3c9799;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #3c9799;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #212529;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #83958a;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #212529;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #3c9799;
}

.info_section .info_links a:hover {
  color: #212529
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
  color: #3390c8;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

/* End of file new life starts */

.color {
                color: #ff4e1b;
            }
           /* Modal Styles */
         /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .modal.is-active {
            display: flex; /* Crucial for displaying the modal */
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            padding: 40px;
            position: relative;
            max-width: 700px;
            width: 90%;
            transform: scale(0.9) translateY(30px);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow-y: auto;
            max-height: 90vh;
        }

        .modal.is-active .modal-content {
            transform: scale(1) translateY(0);
        }
        
        .modal-content h2 {
            font-size: 2.2em;
            color: #2c3e50;
            font-weight: 700;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }

        .modal-content p {
            line-height: 1.8;
            font-size: 1.1em;
            color: #444;
            animation: fadeIn 1s ease-in-out;
        }
        
        .close {
            color: #95a5a6;
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 35px;
            font-weight: lighter;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .close:hover,
        .close:focus {
            color: #333;
            transform: rotate(90deg) scale(1.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

          .container0 {
            max-width: 960px; /* Slightly wider container for more space */
            margin: 40px auto;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* More pronounced, soft shadow */
        }
        .header0 {
            text-align: center;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 2px solid #ecf0f1; /* Lighter border color */
        }
        .header0 .h {
            color: #3498db; /* A more vibrant blue */
            font-size: 3em; /* Larger, more impactful heading */
            font-weight: 700;
            margin-bottom: 8px;
        }
        .header0 .p {
            color: #7f8c8d;
            font-size: 1.3em;
            font-weight: 400;
        }
        .section0 {
            padding: 40px 0;
        }
        .section0 .hh {
            color: #34495e;
            font-size: 2.2em;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }
        /* Underline effect for headings */
        .section0 .hh::after {
            content: '';
            width: 70px;
            height: 4px;
            background-color: #e74c3c; /* A contrasting accent color */
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-why0 .grid0 {
            display: grid; /* Using CSS Grid for a more flexible layout */
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .section-why0 .card0 {
            padding: 25px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
            border-left: 5px solid #3498db; /* A colored border for visual interest */
        }
        .section-why0 .card0:hover {
            transform: translateY(-8px); /* Lifts the card on hover */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .section-why0 .card0 .hhh {
            color: #3498db;
            font-size: 1.4em;
            margin-bottom: 10px;
        }
        .course-outline0 .hhh {
            color: #2ecc71; /* A friendly green color for module titles */
            font-size: 1.6em;
            margin-top: 40px;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 8px;
        }
        .ul {
            list-style: none;
            padding-left: 0;
        }
        .li {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%232ecc71"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: 22px;
            padding-left: 35px; /* More space for the checkmark */
            margin-bottom: 12px;
            font-size: 1.1em;
            font-weight: 500;
        }
        .call-to-action0 {
            text-align: center;
            padding: 50px;
            background: linear-gradient(135deg, #3498db, #2980b9); /* Gradient background */
            border-radius: 12px;
            margin-top: 40px;
            color: white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .call-to-action0 .p {
            font-size: 1.6em;
            font-weight: 600;
            margin-bottom: 20px;
        }
       /* .call-to-action0 .button0 {
            display: inline-block;
            padding: 15px 35px;
            background-color: #e74c3c; /* A striking red button color 
            color: white;
            text-decoration: none;
            border-radius: 50px; /* Pill-shaped button 
            font-size: 1.2em;
            font-weight: 700;
            letter-spacing: 1px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }*/
        /* Brand new, more dynamic button styles and animations */
        .call-to-action0 .button0 {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #e74c3c, #c0392b); /* Gradient background */
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3em; /* Larger text */
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3); /* Initial glow effect */
            transition: all 0.4s ease-in-out; /* Smoother, more distinct transition */
            animation: pulse 2s infinite; /* Added a pulsing animation */
        }
        .call-to-action0 .button0:hover {
            background: linear-gradient(45deg, #c0392b, #e74c3c); /* Reverse gradient on hover */
            transform: scale(1.1) translateY(-5px); /* Scales up and lifts slightly */
            box-shadow: 0 12px 25px rgba(231, 76, 60, 0.5); /* Larger, more intense glow */
            animation: none; /* Stops the pulse animation on hover */
        }

        /* Keyframe animation for the pulsing effect */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }


        /* Whatsapp icon css*/

        .whatsapp-container {
            /* Key CSS for fixed position at the top */
            position: fixed;
            /*top: 39px;  Adjust vertical position from the top */
            bottom: 20px;
            right: 20px; /* Adjust horizontal position from the right */
            
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 50px;
            background-color: #b7d1c2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            z-index: 1000; /* Ensures the icon stays on top of other content */
        }

        .whatsapp-container:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-icon {
            font-size: 2em;
            color: #318ec7;
            transition: transform 0.4s ease;
        }
        
        .number {
            color: #318ec7;
            font-weight: bold;
            font-size: 1.2em;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
            margin-left: 0;
            transition: width 0.4s ease-in-out, margin-left 0.4s ease-in-out, opacity 0.4s ease;
            opacity: 0;
        }

        .whatsapp-container:hover .whatsapp-icon {
            transform: scale(1.1);
        }

        .whatsapp-container:hover .number {
            width: 160px; /* Adjust width as needed */
            margin-left: 10px;
            opacity: 1;
        }
        /*styles for pop-up video page*/

          /* --- Pop-up Core Styles --- */
        .hidden {
            display: none;
        }

        #popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease;
        }

        #popup-overlay.is-visible {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: #1a1a1a; /* Dark background */
            color: #e0e0e0;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
            position: relative;
            width: 95%;
            max-width: 1200px;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.8) translateY(20px);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        #popup-overlay.is-visible .popup-content {
            transform: scale(1) translateY(0);
        }

        /* --- Pop-up Header & Close Button --- */
        .popup-header {
            display: flex;
            flex-direction: column-reverse;
            /*justify-content: space-between;*/
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #333;
            padding-bottom: 15px;
        }

        .popup-header h2 {
            font-size: 2.5em;
            color: #ff9800; /* Orange accent */
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-button {
            font-size: 3rem;
            cursor: pointer;
            color: #757575;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .close-button:hover {
            color: #fff;
            transform: rotate(180deg) scale(1.1);
        }

        /* --- Video Grid & Sections --- */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
        }

        .video-section {
            background-color: #262626;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid #333;
        }

        .video-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .video-section h3 {
            font-size: 1.5em;
            color: #4fc3f7; /* Light blue accent */
            margin-bottom: 15px;
            text-align: center;
        }

        .iframe {
            width: 100%;
            height: 280px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
            .popup-content {
                padding: 20px;
            }
            .popup-header h2 {
                font-size: 2em;
            }
            .close-button {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 500px) {
           /* main h1 {
                font-size: 2em;
            }*/
            #demo-button {
                font-size: 1.2rem;
                padding: 15px 30px;
            }
            .popup-header h2 {
                font-size: 1.5em;
            }
            .close-button {
                font-size: 2rem;
            }
            .popup-content {
                padding: 15px;
            }
            .iframe {
                height: 200px;
            }
        }

        /*toggle arrow courses page*/

         .course-container {
            /*display: grid;*/
            grid-template-columns: 1fr 1fr;
            gap: 30px; /* Increased gap for breathing room */
            margin-bottom: 30px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
         .course-box {
            background-color: #ffffff;
            border-radius: 12px; /* Smoother corners */
            padding: 30px;
            box-shadow: 0 5px 15px var(--box-shadow);
            transition: all 0.3s ease-in-out;
            display: flex; /* Flexbox for internal content alignment */
            flex-direction: column;
        }
        /* --- VISIBILITY CLASS --- */
        .hidden {
            display: none !important;
        }

        /* --- ARROW BUTTON STYLING (Premium Look) --- */
        .button-container {
            text-align: center;
            margin: 50px 0;
        }

        #show-more-btn {
            width: 65px; /* Slightly larger */
            height: 65px;
            background-color: #3d9dcd; /* Use primary color as base */
            border: none;
            border-radius: 50%;
            padding: 0;
            color: #fff; /* White arrow against blue button */
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(63, 81, 181, 0.4); /* Blue-tinted shadow */
            transition: all 0.3s ease-in-out;
            outline: none; /* Remove default focus outline */
        }

        #show-more-btn:hover {
            background-color: aliceblue; /* Slightly lighter blue on hover */
            box-shadow: 0 6px 15px rgba(63, 81, 181, 0.6);
            color: #3d9dcd;
            transform: scale(1.05); /* Subtle grow effect */
        }

        #toggle-arrow {
            display: inline-block;
            font-size: 30px;
           /* color: #fff;  White arrow against blue button */
            transition: transform 0.3s ease; 
        }

        /* CSS class to rotate the arrow when the content is visible */
        .rotated {
            transform: rotate(180deg);
        }