
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Display&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
  overflow-x: hidden;
}
#body
{
  width: 100vw;
}
a {
  color: #009cea;
  text-decoration: none;
}
#vm
{
  text-decoration: none;
  color: white;
}
a:hover {
  color: #1eb4ff;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009cea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #14b1ff;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}
/*-------------------------
# Scroll-bar
----------------------------*
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color:rgb(0, 0, 0);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(rgb(161, 125, 245), rgb(127, 237, 251),rgb(138, 95, 238));
  border-radius: 10px;
}
/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 30px;
}
@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}
.header-social-links a {
  color: #7b909a;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 10px;
}
.header-social-links a:hover {
  color: #009cea;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 0 10px 30px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #7b909a;
  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: #009cea;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #003651;
}
.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: #009cea;
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #364146;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 41, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #364146;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #009cea;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #009cea;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 20vh;
  background-image: url("../img/hero-bg-b.png");
  background-repeat: no-repeat;
  background-position:fixed;
  margin-top: 70px;
  overflow-x: hidden;
  padding: 60px 0;
  background-size: contain;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #364146;
}
#hero h2 {
  color: #576971;
  margin-bottom: 30px;
  font-size: 24px;
}
#hero .hero-img img {
  width: 70%;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  #hero h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f8f9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #627680;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.container1{
	padding: 20px;
	
}

.container1 .image{
	float: right;
	padding-left: 20px;
	padding-right: 280px;
	margin-right:-200px;
	margin-top: -px;
}
.container1 .text0{
	font-size: 25px;
	padding:100px; 
	background-color:  #fff7fd;
	color:black;
	width: 1300px;
	height: 300px;
	font-weight: 200;
}

.container1 .image1{
	float: left;
	padding-right: 10px;
	margin-left: px;
	margin-top:-120px;
	
}
/*-------------------------------------------------------------
Founder and Secertary
--------------------------------------------------------------*/
.container .img
{
  float: right;
  padding-left:20px;
  padding-right: 20px;
  margin-right:-20px;
  padding-top: 130px;
  padding-right: 80px;
 
}

.container .text
{
  
  font-size: 20px;
  padding:30px; 
  background-color: #D0F0C0;
  padding-top: 90px;
  width: 1300px;
  height: 500px;
} 

/*.activities
{
  display: flex;
  box-sizing: border-box;
  color:black;
  font-weight: 600;
}

.activities .img
{
  float: right;
  padding-left:20px;
  padding-right: 20px;
  margin-right:-20px;
 
}

.activities .text
{
  
  font-size: 20px;
  padding:30px; 
  background-color: #14b1ff;
  border-radius: 0 0 0 35px;
  box-shadow: 0px 5px #d6d6d6;
   width: 1300px;
  height: 210px;
}

.activities .img2
{
  float: left;
  padding-left:-20px;
  padding-right:20px;
  margin-right:20px;
  
}

.activities .text2
{
  font-size: 1.3rem;
  
  padding:20px; 
  background-color: #7c858a;
  border-radius: 0 0 35px 0;
  box-shadow: 0px 5px #d6d6d6;
  
}

.activities .img3
{
  float: right;
  padding-left:20px;
  padding-right: 20px;
  margin-right:-20px;
  padding-top:80px;
}*/
/*-------------------------------------------------------------
 Our mission vision goals
 --------------------------------------------------------------*/
.vision{
  padding: 20px;
}

.obj2 .img2{
  margin-left:20px;
  margin-top: -150px;
}

.column{
  color: whitesmoke;
  height: 200px;
  width: 100px;
  margin-top: 100px;
}

.column {
  display: flex;
  width: 33.33%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
/*-------------------------------------------------------------
 Our Objective
 --------------------------------------------------------------*/
.object{
  padding: 20px;
}
 h1{
  text-align: center;
  color: balck;
  text-decoration: underline;
  text-decoration-color: #1ca7e8;
}
.object .text1{
  font-size: 25px;
  padding-right:250px; 
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 50px;
  background-color: #1ca7e8;
  box-shadow: 0px 5px #d6d6d6;
  color: white;
  width: 1470px;  
}
.triangle-right {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-left: 100px solid #aef272;
    border-bottom: 50px solid transparent;
    padding-bottom: 0px;
    margin-top: 0px;
}

/*-------------------------------------------------------------
 Mission and vision
--------------------------------------------------------------*/

.mission .img1{
    padding-left: 500px;
    margin-bottom: -50px;

}
/*-------------------------------------------------------------
 Button
--------------------------------------------------------------*/

.button2{
  border: 20px;
  color: white;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 6px 2px;
  cursor: pointer;
  background-color: #4CAF50; 
  color: White; 
  border: 2px solid #4CAF50;
  border-radius: 12px;
  border-color: #33c9cc;
  border-width: 5px;
  margin-left:700px;
  margin-top: 30px;

}
.button2:hover {
  background-color: #4CAF50	;
  color: pink;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  border: 2px solid #e9ecee;
  border-radius: 4px;
}
.contact .info i {
  font-size: 20px;
  color: #009cea;
  float: left;
  width: 44px;
  height: 44px;
  background: #f2f4f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #364146;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #627680;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #009cea;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #009cea;
  color: #fff;
}
.contact .php-email-form {
  
  width: 100%;
  padding: 30px;
  background: #fff;
  
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}



.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  width: 300px;
}
.contact .php-email-form input {
  height: 44px;
  width:350px;
  border-radius: 5px;
  background-color: #e6f4fb;
}
#myFile
{
  background-color: white;
}
.contact .php-email-form button[type=submit] {
  background: #fc8f00;
  border: 0;
  
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #1eb4ff;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f6f7;
  min-height: 40px;
  margin-top: 70px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4c5c63;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #364146;
  padding: 0 0 30px 0;
  color: #f7f8f9;
  font-size: 14px;
  justify-content: center;
  text-align: center;
}
#footer .footer-top {
  background: #364146;
  padding: 60px 0 30px 0;
  
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #333030;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #364146;
  color: #8a9ca5;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  
  font-size: 18px;
  line-height: 1;
  margin-left: 100px;
  align-items: right;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: right;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-align: right;
}



#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}

#btn
{
  padding-left: 15%;
  margin-right:1%;
  padding-top:25px;
}
#bt
{
  width: 300px;
  background-color:rgb(87, 195, 87);
  color:white;
}
#pages
{
  padding-left:10%;
  margin-right:1%;
}
.four 
{
  display: flex;
}
.button.block {
  display: block;
  width: 200px;    
}

.margin-auto {
  margin: 0 auto;
}

#button
{
  color:white;
  font-size: 1.4rem;
  font-weight: bold;
  background: rgb(4, 149, 4);
  border-radius: 25px;
  border: 7px solid cyan;
}

@keyframes scrollText {
  from {
      /* transform: translateX(-100%); */
      opacity: 0;
  }
  to {
      /* transform: translateX(100%); */
      opacity: 1;
  }
}

.samooha-heading {
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
  color: #28a745;
  /* white-space: nowrap;
  animation: scrollText 5s linear infinite; */
}

/* Hide part of the text on small screens */
@media (max-width: 768px) {
  .samooha-heading::after {
    content: "SAMOOHA";
    display: inline;
  }
  
  .samooha-heading {
    font-size: inherit; /* Keep the size same */
    visibility: hidden;
    position: relative;
  }

  .samooha-heading::after {
    visibility: visible;
    position: absolute;
    left: 0;
  }
}