
@import url('https://fonts.googleapis.com/css2?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');



/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #7C5C26;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background-color:#fff;
}

.header.sticked {
  background:#fff;
  padding: 10px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header .logo .logo-text {
 font-size: 1em;
  font-weight: 600;
  color: #7C5C26;}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 10px 10px 10px;;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #0B705D;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
   background:#0B705D;
    padding:6px 20px;
    margin-left: 30px;
    border-radius:4px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95em;

  }
    .navbar .get-a-quote1,
  .navbar .get-a-quote1:focus {
   background:#7C5C26;
    padding:6px 20px;
    margin-left: 10px;
    border-radius:4px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95em;

  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #7C5C26;
  }

    .navbar .get-a-quote1:hover,
  .navbar .get-a-quote1:focus:hover {
    color: #fff;
    background: #0B705D;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
    color:#444;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color:#0B705D;
    background-color:#f5f5f5f5;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: #0B705D;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #222;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner {
  width: 100%;
  /* min-height: 50vh; */
  background-color:#F0EAD6;
 background-image: url("../images/banners/Orca.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
margin-top:6em;
  color: #fff;
  padding:80px 0 30px;
}

.banner h1 {
  margin-bottom: 10px;
  font-size: 2.4em;
  font-weight: 600;
line-height:1.3;
text-transform:capitalize;
}
.banner h2 {
margin-bottom: 20px;
  font-size: 3.4em;
  font-weight: 700;
  line-height: 1.3;
  text-transform:capitalize;
}
.banner p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
}


.krisha-bhagavatham img{
border-radius:1em;
}
.medication img{
  height:60px;
}
.medication{
  text-align:center; 
}
.spiritual-box{
   text-align:center; 
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   padding: 20px;
   height:100%;
}
.heighlets{
  padding:50px 0 50px;
}
.spiritual-box h4{
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3;
  padding-top:10px;
}
.spiritual-box p{
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.6;
}

.teaching-1{
  height:100%;
}
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #0B705D;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: block;
  position: relative;
  background-color: #121212;
  border-radius: 1em;
  padding: 32px 24px;
  width:100%;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  color:#fff;
}
.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #0B705D;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
  
}
.card1 h3 {
font-size:1.4em;
/* color:#0B705D; */
font-weight:600;
text-transform:uppercase;
}
.card1 h6 {
font-size:1em;
/* color:#0B705D; */
font-weight:600;
text-transform:capitalize;
text-decoration:underline;
}
.card1 p {
font-size:0.95em;
font-weight:400;
line-height:1.5;
}
.card1:hover:before {
  transform: scale(41);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: #fff;
}
.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;

}
.card1:hover h6 {
  transition: all 0.3s ease-out;
  color: #fff;

}
.programs-sprictual{
  padding:60px 0 60px;
}
.our-pro{
  text-align:center;
  margin-bottom:30px;
}
.our-pro h3{
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  text-transform:capitalize;
  color:#7C5C26;
}
.headin01{
  margin-top:3em;
}
.headin01 h2{
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3;
  text-transform:capitalize;
}
.headin01 p{
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.6;
}
.about-sec{
  padding:60px 0 60px;
  background-color:#f5f5f5f5;
}
.about-test-1 h3{
font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  color: #7C5C26;
}
.about-test-1 h2{
font-size: 1.6em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  color: #7C5C26;
}
.about-test-1 p{
font-size: 1em;
  font-weight: 400;
  line-height: 1.65;
}
.about-test-1 ul li{
font-size: 1em;
  font-weight: 500;
  line-height: 1.8;
}
.space-gap{
  margin-top:3em;
}
.ojgect{
  color:#fff;
  background: #0B705D;padding:20px;
  height:100%;
  border-radius:1em;
  text-align:center;
}
.ojgect h5{
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  margin-top:1.5em;
}
.ojgect p{
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.6;
}
.objective{
  padding:80px 0 80px;
}
.object-2{
  margin-bottom:2em;
}
.object-2 h2{
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  color: #7C5C26;
}

.object-2 p{
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.65;
}
.footer1{
    padding:60px 0 30px;
  background-color:#f5f5f5f5;
}
.foot-log{
  height:80px;
}
.links-head h5{
  font-size: 1.25em;
  color: #0B705D;
  font-weight: 700;
  text-transform: uppercase;
}
.links-head p{
    font-size: 0.95em;
  font-weight: 400;
  line-height: 1.6;
}
.links-head ul li{
    font-size: 0.95em;
  font-weight: 400;
  line-height: 1.8;

}
.links-head li a{
  color:#222;
}
.copyright {
  margin-top:5em;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.copyright a {
    color: #222;
}
.test-key-ul ul{
  display:flex;
  gap:1em;
  list-style-type: none;
  padding:0;
  justify-content: flex-start;
  align-items: center;
}
.test-key-ul ul li{
  border:1px solid #f5f5f5f5;
  padding:10px;
  text-transform:capitalize;
  font-size:1em;
  font-weight:500;
  cursor:pointer;
  border-radius:4px;
}
.jaga-title h3{
margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
.jaga-title h1{
margin-bottom: 10px;
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
    letter-spacing:0.5px;
}
.jaga-title p{
  font-size: 1em;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing:0.5px;
}
.progrma-intro{
  padding:60px 0 60px;
}
.intro-top h2{
  margin-bottom: 5px;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
    color:#0B705D;
}
.intro-top h3{
  margin-bottom: 5px;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
    color:#0B705D;
}
.intro-top p{
  font-size: 1em;
  font-weight:400;
  line-height: 1.65;
  margin-bottom:7px;
}
.intro-top ul li{
  font-size: 1em;
  font-weight:500;
  line-height: 1.8;
}
b, strong {
  font-weight: 600;
}
.commom-side h4{
  margin-bottom: 5px;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color:#0B705D;

}
.commom-side h5,.commom-side h6{
  margin-bottom: 8px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;

}
.commom-side img{
  height:120px;
  margin-bottom:1em;
   margin-top:1em;
}
.commom-side{
  text-align:center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding:5px;
  margin-bottom:2em;
}
.intro-top ol li{
  font-size: 1em;
  font-weight:500;
  line-height: 2;
}
.table-responsive{
  margin-top:2em;
}
.online-test-section{
  padding:60px 0 60px;
}
.commit{
  border:2px solid #0B705D;
  padding:20px;
  height:100%;
}
.commit h4{
  margin-bottom: 5px;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
  color: #0B705D;

}
.commit h6{
  margin-bottom: 5px;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;

}
.commit p{
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
}
.blok-1{
  margin-top:2em;
}
.test-sec{
    border:2px solid #0B705D;
  padding:20px;
  text-align:center;
  margin-bottom:20px;
}

.test-sec h3 a{
color:#444;

}
.test-sec h3{
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
  text-decoration:underline;
}
.stick{
  position:sticky;
  top:20%;
}

    .login-box {
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 400px;
      margin:10px;
    }

    .form-control {
      border-radius: 10px;
    }

    .btn-primary {
      border-radius: 10px;
      background-color: #0B705D;
      border: none;
    }

    .btn-primary:hover {
      background-color: #0B705D;
    }

    .login-title {
      font-size: 23px;
      font-weight: 700;
      color: #222;
      margin-bottom: 30px;
      text-align: center;
    }

    .toggle-password {
      cursor: pointer;
      position: absolute;
      right: 15px;
      top: 38px;
    }

    .position-relative {
      position: relative;
    }
    .bg-flex{
   background:#0B705D;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  padding: 6em 0 6em;
    }
    .form-label {
  margin-bottom: .5rem;
  font-weight: 500;
}
label {
    font-weight: 600;
    color: #444;
    font-size:16px;
}

 .box8 {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        h2.text-info {
            color: #222;
            font-weight: 600;
        }

        .form-control {
            border-radius: 8px;
            transition: border-color 0.3s ease-in-out;
        }

        .form-control:focus {
            border-color: #007bff;
            box-shadow: none;
        }

        .is-invalid {
            border-color: #dc3545 !important;
        }

        .btn-primary {
            background: #0B705D;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: #0B705D;
        }

        label {
            font-weight: 500;
        }

        .form-check-label {
            font-size: 0.95rem;
        }

.form-control {
  display: block;
  width: 100%;
  padding:.375rem .75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border:1px solid #1eee;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance: none;
  border-radius:.375rem;
  transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-bottom:20px;
}