:root {
  --accent: #03a9f4;
  --btn-shadow: 0 8px 18px rgba(3, 169, 244, 0.28);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Baloo 2", sans-serif;
}

body {
  font-family: "Baloo 2", sans-serif;
}

/*=====================================================================
 Header styles 
======================================================================*/

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  transition: all 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  background: #ffffff;
  transform: translateY(-1px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand img {
  height: 80px;
  width: auto;
  transition: transform 0.45s ease;
}
.brand .brand-name {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
}

/* Contact button */
.contact-btn {
  background-color: transparent;
  background-image: url(../images/Button-bacground.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 19px 52px;
  font-weight: bold;
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 30px;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(3, 169, 244, 0.2);
}

/* Hamburger icon styles */
.hamburger-btn {
  width: 54px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger-btn .bar {
  width: 22px;
  height: 2px;
  background: #0d6efd;
  display: block;
  position: relative;
}
.hamburger-btn .bar::after,
.hamburger-btn .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #0d6efd;
}
.hamburger-btn .bar::before {
  top: -7px;
}
.hamburger-btn .bar::after {
  top: 7px;
}
      .hamburger-icon-container-box{
    display:none!important;
}
.hamburger-icon-container-box button {
  position: relative;
  padding: 0;
  margin: 0;
  height: 72px;
  width: 70px;
  background-color: transparent;
  border: none;
}
.hamburger-icon-container-box button img {
  width: 100%;
  height: auto;
}

/* Dropdown large custom menu */
.mega-menu {
  min-width: 40vw;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(12, 20, 40, 0.12);
  background-color: #fff6eb;
}
.mega-menu .left-actions {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
.mega-menu .left-actions .menu-btn {
  width: 180px;
  text-align: left;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  background-color: #009ede;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.mega-menu .right-products {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.mega-menu .product-thumb {
      width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px;
}
.dropdown-menu-box {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: none, important !important;
  background-color: transparent !important;
  border-color: none !important;
}

/* subtle entrance animation */
.site-header .animate-in {
  animation: slideIn 0.7s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/*=====================================================================
 Hero Section styles 
======================================================================*/

.hero-section-start {
  height: 520px;
  background-color: #31b9eb;
  margin-top: 100px;
}
.hero-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hero-section h1 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 65px;
  color: white;
}
.hero-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 65px;
  color: white;
}
.hero-logo {
  max-width: 420px;
  margin: -28px auto 20px auto;
  z-index: 0;
}
.btn-discover {
  background-image: url(../images/Button-bacground.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-weight: 600;
  padding: 30px 40px;
  font-size: 24px;
  animation: zoomPulse 2s infinite ease-in-out;
  background-color: transparent;
  text-decoration: none;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes zoomPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Vector positions */
.vector {
  position: absolute;
  width: 170px;
  max-width: 22vw;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}
.vector-top-left {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  border-radius: 60px;
}
.vector-top-right {
  top: 10%;
  right: 15%;
  animation-delay: 1s;
}
.vector-bottom-left {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}
.vector-bottom-right {
  bottom: 10%;
  right: 25%;
  animation-delay: 3s;
}
.proteain-logo-botom-text {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-left: 195px;
  margin-top: -55px;
  z-index: 1;
}

/*=====================================================================
 Announcement Section 
======================================================================*/
.announcement-bar {
  background: #ffd944;
  overflow: hidden;
  position: relative;
  border-bottom: 10px solid #004080;
  white-space: nowrap;
  padding: 20px;
}
.scroll-wrapper {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
.announcement-text {
  display: flex;
  align-items: center;
  font-size: 38px;
  font-weight: bold;
  color: #004080;
  text-shadow: 1px 1px #fff;
  margin-right: 0px;
}
.announcement-text img {
  height: 35px;
  margin: 0 32px;
  vertical-align: middle;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*=====================================================================
 Benefits Section 
======================================================================*/
.benefits-section {
  text-align: center;
  padding: 60px 20px;
}
.benefits-section h2 {
  color: #03a9f4;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 65px;
}
.benefits-section p.lead {
  color: #444;
  margin-bottom: 40px;
  font-size: 32px;
}
.benefit-card {
  border: 4px solid #31b9eb;
  border-radius: 12px;
  padding: 30px 20px;
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.benefit-icon img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}
.benefit-title {
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
  font-size: 28px;
}
.benefit-text {
  color: #555;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
}

/*=====================================================================
 Team Section 
======================================================================*/
.team-section {
  background: #31b9eb;
  color: white;
  text-align: center;
  padding: 80px 20px 0 20px;
  position: relative;
  overflow: hidden;
}
.team-section h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 65px;
}
.team-section p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 32px;
}
.team-photo {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  z-index: 2;
  position: relative;
}
.team-section .vector {
  position: absolute;
  width: 252px;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}
.team-section .vector-left {
  left: 16%;
  bottom: -8%;
  animation-delay: 0s;
}
.team-section .vector-right {
  right: 16%;
  top: 45%;
  animation-delay: 2s;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/*=====================================================================
 Product Section 
======================================================================*/
.product-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-section h2 {
  color: #03a9f4;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 65px;
}
.product-section p {
  color: #444;
  margin-bottom: 20px;
  font-size: 20px;
}
.product-card {
  border: 4px solid #00a9e0;
  border-radius: 26px;
  padding-bottom: 32px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.product-card img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
}
.btn-coming {
  background: #fdd835;
  color: #003366;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 20px;
  box-shadow: 2px 3px 0 #003366;
  transition: transform 0.3s ease;
}
.btn-coming:hover {
  transform: scale(1.05);
}
.product-card-details {
  padding: 10px 20px 0 20px;
}

/*=====================================================================
 Footer Section 
======================================================================*/
.footer {
  background: #2bb7e8;
  color: #fff;
  text-align: center;
  padding: 40px 0 0;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}
.footer .col-3 {
  text-align: left;
  display: flex;
  align-items: center;
}
.footer .col-5 {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer-logo {
  max-width: 250px;
  margin-bottom: 20px;
}
.footer p {
  margin: 10px 0;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  text-align: left;
  line-height: 48px;
}
.footer a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.social-icons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.social-icons a img {
  width: 22px;
  height: 22px;
}
.social-icons a:hover {
  transform: scale(1.15);
  background: #ffd633;
}
.footer-bottom {
  background: #ffd633;
  color: #333;
  padding: 16px 0;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=====================================================================
 Contact us page css
======================================================================*/


.contact-header {
      background: #2bb7e8;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0 0 40px 40px;
      animation: fadeInDown 1.5s ease-in-out;
    }

    .contact-header h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }

  .contact-body {
    padding: 60px 20px;
    max-width: 100%;
    margin: 120px auto 0 auto;
    animation: fadeInUp 1.5s ease-in-out;
   
}
.contact-body .row{

}
.contact-body .row .contact-right-side{

}
.contact-body .row .contact-left-side{

}
.contact-right-side{
  position: relative;
}
.contact-right-side img{
  width: 100%;
}
.contact-us-section-inner-box {
    width: 75%;
    margin: 0 auto;
}
    .contact-body p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .contact-body p strong {
  color: #2bb7e8;
      
    }

    .email-box {
      background: #fff3cd;
      border: 2px solid #ffd633;
      padding: 15px 20px;
      border-radius: 12px;
      display: inline-block;
      margin-top: 20px;
      font-weight: 600;
      color: #333;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      animation: fadeIn 2s ease-in-out;
    }
.contact-email-box-div{

}
    .email-box:hover {
      background: #ffd633;
      color: #fff;
      transform: scale(1.05);
    }

    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

/*=====================================================================
 Product Page css
======================================================================*/

   .product-page-section {
    padding-top: 160px;
}
/*=====================================================================
 About us Page css
======================================================================*/

.team-page-section{
  margin-top: 110px;
}

/*=====================================================================
 Responsive (merged queries)
=======================0===============================================*/
/* Extra large devices (≤1440px) */
@media (max-width: 1440px) {
  .vector {
    width: 136px;
}
  .vector-top-left {
    top: 10%;
    left: 10%;
  }
  .vector-top-right {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
  }
}
/* Extra large devices (≤1200px) */
@media (max-width: 1200px) {
  .vector {
    width: 90px;
  }
  .vector-top-left {
    top: 10%;
    left: 5%;
  }
  .vector-top-right {
    top: 10%;
    right: 5%;
    animation-delay: 1s;
  }

  .hero-section h1 {
    font-size: 50px;
  }
  .hero-section h2 {
    font-size: 50px;
    margin-bottom: 8px;
  }
  .hero-logo {
    max-width: 370px;
  }

  .team-section .vector {
    width: 135px;
  }
  .team-section .vector-left {
    left: 5%;
    bottom: 7%;
  }
  .team-section .vector-right {
    right: 5%;
    top: 45%;
  }
  .team-photo {
    max-width: 440px;
  }

  .footer-logo {
    max-width: 180px;
  }
  .footer p {
    font-size: 30px;
    line-height: 32px;
  }
  .mega-menu .product-thumb {
    width: 260px;
    
}
}

/* Medium devices (≤992px) */
@media (max-width: 992px) {
  .vector {
    width: 140px;
}
  .vector-top-left {
    top: 10%;
    left: 5%;
  }
  .vector-top-right {
    top: 10%;
    right: 5%;
  }
  .vector-bottom-left {
    bottom: 15%;
    left: 10%;
}
  .hero-section h1 {
    font-size: 65px;
  }
  .hero-section h2 {
    font-size: 65px;
    margin-bottom: 20px;
  }
  .mega-menu {
    min-width: 90vw;
}
.mega-menu .left-actions {
    width: 100%;
}
.dropdown-menu-box {
    flex-direction: column;
}
.mega-menu .left-actions .menu-btn {
    width: 100%;
}
.mega-menu .product-thumb {
    width: 32%;
}
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .vector {
    width: 90px;
    display: none;
  }

  .brand img {
    height: 75px;
  }
  .contact-btn {
    display: none;
  }

  .proteain-logo-botom-text {
    font-size: 60px;
    margin-top: -25px;
    margin-left: 0;
  }
  .hero-section h1 {
    font-size: 60px;
  }
  .hero-section h2 {
    font-size: 60px;
  }

  .benefits-section h2 {
    font-size: 40px;
  }

  .team-section .vector {
    display: none;
  }
  .team-section h2 {
    font-size: 40px;
  }
  .team-section p {
    font-size: 20px;
  }

  .footer .col-3,
  .footer .col-4,
  .footer .col-5 {
    width: 100%;
  }
  .footer a {
    font-size: 32px;
  }

  .product-section h2 {
    font-size: 32px;
    line-height: 35px;
  }
  .hero-logo {
    max-width: 90%;
    margin: 0 auto 20px;
  }
  .btn-discover {
    font-size: 32px;
    padding: 36px;
  }

    .hamburger-icon-container-box button img {
    width: 80%;
}
.mega-menu .right-products {
    display: none;
}
.mega-menu {
    min-width: 92vw;
}
.mega-menu .left-actions {
    width: 100%;
}
.mega-menu .left-actions .menu-btn {
    width: 100%;
}
}

/* Small devices (≤576px) */
@media (max-width: 576px) {
  .vector {
    width: 90px;
    display: none;
  }
  .hero-section {
    min-height: 90vh;
  }

  .brand img {
    height: 75px;
  }
 .contact-btn {
    width: 110px;
    padding: 5px;
    font-size: 18px;
}
  .dropdown-menu-box {
    flex-direction: column;
}
.mega-menu .right-products {
    display: none;
}
.mega-menu {
    min-width: 92vw;
}
.mega-menu .left-actions {
    width: 100%;
}
.mega-menu .left-actions .menu-btn {
    width: 100%;
}

.proteain-logo-botom-text {
    font-size: 32px;
    margin-top: 0px;
    margin-left: 0;
}
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-section h2 {
    font-size: 28px;
  }

  .benefits-section h2 {
    font-size: 40px;
  }
  .team-section .vector {
    display: none;
  }
  .team-section h2 {
    font-size: 40px;
  }
  .team-section p {
    font-size: 20px;
  }

  .footer .col-3,
  .footer .col-4,
  .footer .col-5 {
    width: 100%;
  }
  .footer a {
    font-size: 32px;
  }

  .product-section h2 {
    font-size: 32px;
    line-height: 35px;
  }
  .hero-logo {
    max-width: 90%;
    margin: 0 auto 20px;
  }
  .btn-discover {
    font-size: 20px;
    padding: 22px;
  }
  .hamburger-icon-container-box button img {
    width: 80%;
}
.contact-body {
    padding: 20px 20px 20px 20px;
}
.contact-body .row {
    flex-direction: column-reverse;
}
.contact-body .row .contact-right-side{
width: 100%;
}
.contact-body .row .contact-left-side{
width: 100%;
}
.contact-us-section-inner-box {
    width: 100%;
    margin: 30px auto;
    text-align: center;
}
.contact-body p {
    margin-bottom: 10px;
}

}