@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Outfit", sans-serif;
}
/*header section*/

a{text-decoration: none;}
.padding-space{padding: 3rem 0rem}

.header_bg
{
	background-color: #fff;
	padding: 0.5rem 0.8rem;
	border-radius: 30px;
}
.nav-link
{
	font-size: 18px;
	color: #212529;
}
.nav-link:hover
{
	color: #FB3F52;
}
.theme-btn1 {
    display: inline-block;
    border-radius: 80px;
    background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
    padding: 12px 12px 12px 18px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: none;
}
.theme-btn1:hover
{
	background: linear-gradient(90deg, #5056F8 0%, #5056F8 100%);
}
.theme-btn2 {
    display: inline-block;
    border-radius: 80px;
    background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
    padding: 12px 12px 12px 18px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    width: 100%;
    font-weight: 600;
    line-height: 18px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: none;
    transition: 1s;
}
.theme-btn2:hover
{
	background: linear-gradient(90deg, #5056F8 0%, #5056F8 100%);
	transition: all 0.5s;
}

/*footer section*/
    footer {
      background: #f2f3f5;
      padding: 60px 0 20px;
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      font-size: 22px;
    }

    .logo-box i {
      background: linear-gradient(45deg, #ff6a3d, #ff8c5a);
      color: #fff;
      padding: 12px;
      border-radius: 50%;
    }

    .footer-text {
      margin-top: 20px;
      color: #555;
      line-height: 1.7;
    }

    .email-box {
      margin-top: 20px;
      position: relative;
    }

    .email-box input {
      width: 100%;
      border-radius: 30px;
      padding: 12px 20px;
      border: none;
      outline: none;
      background: #e6e7ea;
    }

    .email-box button {
      position: absolute;
      right: 5px;
      top: 5px;
      bottom: 5px;
      border: none;
      width: 45px;
      border-radius: 50%;
      background: linear-gradient(45deg, #ff6a3d, #ff8c5a);
      color: white;
      transition: 0.3s;
    }

    .email-box button:hover {
      transform: scale(1.1);
    }

    .footer-title {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer-links a {
      display: block;
      color: #444;
      text-decoration: none;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #ff6a3d;
      transform: translateX(5px);
    }

    .contact-info i {
      margin-right: 10px;
      color: #ff6a3d;
    }

    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: #e6e7ea;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      color: #333;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #ff6a3d;
      color: white;
      transform: translateY(-5px);
    }

    .footer-bottom {
      border-top: 1px solid #ddd;
      margin-top: 40px;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    @media(max-width:768px){
      .footer-bottom {
        text-align: center;
        justify-content: center;
        gap: 10px;
      }
    }

/*here section*/

.hero_bg 
{
	width: 14%;
	margin: auto;    
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
   
}
.hero_bg a{color: #fff}


/*contact page */

.contact_box
{
	box-shadow: 0px 0px 5px 0px #074AAD;
	padding: 1rem;
	text-align: center;
	border-radius: 5px;
	transition: .5s;
	height: 195px;
	margin-bottom: 1rem;
}
.contact_box:hover
{
	margin-top: -1rem;
}
.contact_box strong
{
	font-size: 1.2rem;
}
.contact_icon
{
	background: #0000ff29;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: auto;
	padding: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_icon i 
{
	font-size: 1.4rem;

}
.form-box
{
	width: 100%;
	height: 40px;
	border: none;
	outline: none;
	padding: 0rem 0.7rem;
}

/*blog page style*/

   .blog-section {
      padding: 80px 0;
      background: #f5f6f8;
    }

    .blog-card {
      background: #e9eaee;
      border-radius: 12px;
      overflow: hidden;
      transition: 0.4s ease;
      position: relative;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .blog-img {
      overflow: hidden;
    }

    .blog-img img {
      width: 100%;
      transition: 0.5s;
    }

    .blog-card:hover .blog-img img {
      transform: scale(1.1);
    }

    .blog-content {
      padding: 20px;
    }

    .meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }

    .meta i {
      margin-right: 5px;
      color: #ff6a3d;
    }

    .blog-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #111;
    }

    .read-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 30px;
      background: linear-gradient(45deg, #ff4d4d, #ff7a45);
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .read-btn i {
      background: white;
      color: #ff4d4d;
      width: 30px;
      height: 30px;
      padding: 8px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .read-btn:hover {
      transform: scale(1.05);
      color: #fff;
    }

    .read-btn:hover i {
      transform: rotate(45deg);
    }

    @media(max-width:768px){
      .blog-title {
        font-size: 18px;
      }
    }

/*    blog details page*/

.tag_name
{
	display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-transform: capitalize;
    border-radius: 4px;
    background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
    padding: 10px 12px;
    
    margin-top: 1rem;
}
.tag_date
{
	display: inline-block;
    color: var(--SEO-Marketing-Text-Color, #0B0314);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-top: 1.5rem;
    text-transform: capitalize;
   
}


/*    gallery page desing*/

    .gallery-section {
      padding: 80px 0;
    }

    .gallery-title {
      text-align: center;
      font-weight: 700;
      margin-bottom: 60px;
      font-size: 32px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      cursor: pointer;
      transform: scale(1);
      transition: 0.4s ease;
    }

    .gallery-item:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .gallery-item img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.15);
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(255,90,50,0.4));
      opacity: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.4s;
    }

    .overlay i {
      color: #fff;
      font-size: 28px;
      transform: scale(0.5);
      transition: 0.3s;
    }

    .gallery-item:hover .overlay {
      opacity: 1;
    }

    .gallery-item:hover .overlay i {
      transform: scale(1.2);
    }

    /* Modal Animation */
    .modal-content {
      background: transparent;
      border: none;
    }

    .modal-body img {
      width: 100%;
      border-radius: 12px;
      animation: zoomIn 0.4s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.6) rotate(-5deg);
        opacity: 0;
      }
      to {
        transform: scale(1) rotate(0);
        opacity: 1;
      }
    }

    .btn-close {
      background: #fff;
      border-radius: 50%;
      opacity: 1;
      padding: 10px;
    }



/*    about page desing*/
/* Section spacing */
.section {
  padding: 70px 0;
}

/* About Image */
.about-img {
  border-radius: 10px;
  transition: transform 0.4s;
}
.about-img:hover {
  transform: scale(1.05);
}

/* Counter */
.counter-box {
  background: #0d6efd;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.counter-box:hover {
  background: #084298;
}

.counter {
  font-size: 40px;
  font-weight: bold;
}

/* Mission Vision */
.mv-card {
  padding: 30px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: 0.3s;
}
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Scroll Animation */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
