@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  body {
    width: 100%;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #FF7F00, #ffffff);
  /* You can adjust the colors and direction (to bottom, to top, to left, to right, etc.) as needed */
  font-family: Arial, sans-serif;
  color: white;
  /* Text color to contrast with the background */
}

body {
  height: 100%;
  width: 100%;
  color: #222;
}


.container-fluid {
  padding: 0;
}

/* utility class*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #444444;
}

a {
  color: #FF7F00;
}

a:hover {
  color: #FF7F00;
  text-decoration: none;
}

/* Home page CSS */
/*header image Start*/
#header {
  height: 100vh;
  background: url('images/coverimg2.jpeg') center/cover no-repeat;
  position: relative;
}

.header-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.header-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*header Image End*/

/*jumbotron Section Starts*/
.jumbotron {
  background-color: white;
  padding: 4rem 2rem;
  margin-bottom: 0;
}

.jumbotron h1 {
  color: #FF7F00;
  margin-bottom: 1rem;
}

.border1 {
  width: 60px;
  height: 3px;
  background: #FF7F00;
  margin: 1rem auto;
}

/*jumbotron Section End*/

/*Welcome Section Starts*/
.welcome {
  width: 75%;
  margin: 0 auto;
  padding-top: 2rem;
}

.btn:hover {
  color: #fff;
}

/*Welcome Section End*/

/*Below We teach them.....(Cards) Starts*/
.services {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.icon-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.icon-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-box .icon {
  color: #FF7F00;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.icon-box h4 {
  color: #333;
  font-weight: bold;
}


/*Below We teach them.....(Cards) End*/

/*Portfolio Section Starts || Same CSS use for Education @TRPWS*/
.portfolio {
  padding: 4rem 0;
}

.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.portfolio-wrap img {
  transition: all 0.3s ease;
}

.portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(255, 127, 0, 0.8);
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*Portfolio Section End*/

#footer {
  background-color: #dedede;
  color: white;
  padding: 3rem 0;
}

#footer .social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #FF7F00;
  color: white;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

#footer .social-links a:hover {
  background: white;
  color: #FF7F00;
}


@media screen and (max-width: 960px) {
  .col {
    flex: 100%;
    max-width: 100%;
  }
}

/*Testimonial ends*/

/* Home page CSS End*/