@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --black-color: #222222; 
  --red-color: #ED1C24;
  --gray-color: #7A7A7A;
  --gray-light-color: #EBEBEB;

}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
    font-family: "Jost", sans-serif;
}

h2
{
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
}

h3{
   font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.heading-line {
  position: relative;
  /*display: inline-block;  keeps the line centered under the text */
  padding-bottom: 20px;
}

.get-in-touch{
  background: url('../images/bee-pattern.webp') ;
  padding:30px 15px;
  color:#fff;
}

.get-in-touch a{
  color:#fff;
  text-decoration: none;
}

.get-in-touch h3{
  font-size:34px;
}

.get-in-touch h6{
  font-size:22px;
}

.get-in-touch .col-md-4{
  display: flex;
    align-items: center;
}

.heading-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;          /* line width */
  height: 5px;           /* line thickness */
  background-color: var(--red-color);

}


.global-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background:var(--black-color);
  border-bottom: 3px solid var(--red-color);
}

.spacer-general{
  height:100px;
}
.spacer-200{
  height:200px;
}

.edge-to-edge {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  min-height: 600px;
}

.edge-to-edge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* taller for smooth scroll */
  transform: translateY(0);
  z-index: -1;
  will-change: transform;
}

.edge-to-edge h3 {
 margin-top:150px;
 font-size:30px;
 font-weight:400;
}



.brand-box {
  perspective: 1000px;
  width: 100%;
  height: 220px;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.brand-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
   transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.brand-box:hover .brand-inner {
  transform: rotateY(180deg);
}


.brand-front,
.brand-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.brand-front img {
  max-width: 70%;
  height: auto;
  transition: transform 0.4s ease;
}

.brand-box:hover .brand-front img {
  transform: scale(1.05);
}

.brand-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 20px;
}


.logo img {
  width: 220px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 50px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-header {
  fill: #fff;
  transition: fill 0.3s;
}

.contact-info a:hover .icon-header {
  fill: var(--red-color)
}

.menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-toggle:hover .icon-header {
  fill: #25D366;
}

/* Overlay styles (unchanged) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay.active {
  display: flex;
}

.overlay-content {
  text-align: center;
  position: relative;
}

.overlay-content nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 35px;
  margin: 20px 0;
  transition: color 0.3s;
  font-weight: 600;
  line-height: 28px;
  width:100%;


}
/*
.overlay-content nav a::after {
  content:"";
  position:absolute;
  height:5px;
  left:0%;
  width:0;
  background:var(--red-color);
  transition: width .5s;
  z-index: -1;
  display: inline;
}
.overlay-content nav a:hover::after {
  width:100%;
  z-index: -1;
  display: inline;
}*/
.overlay-content nav a:nth-child(2){
  margin-bottom:60px;
}

.overlay-content nav a:hover{
  text-decoration: underline;
  text-decoration-color: var(--red-color)
}

.close-btn {
  position: absolute;
  top: 23px;
  right: 67px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.bg-text {
  font-family: "Saira", sans-serif;
  position: absolute;
  bottom: 60px;
  font-size: 9vw;
  font-weight: 700;
  letter-spacing: 10px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  user-select: none;
  right: 0;
  left: 0;
   transition: transform 0.1s ease-out;
}

.top-header{
  height: 400px;
  background-color: var(--black-color) ;
  background-size:cover;
  color: #fff;
  display: flex;
  flex-direction: column; /* corrected from 'col' */
  justify-content: center; /* vertical alignment */
  align-items: flex-start; /* horizontal alignment to the left */
  padding-left:150px;
}
.top-header h1{
  font-size:60px;
  font-weight: 500;
  margin: 0;
}
.top-header h2{
 font-weight: 300;
 font-size:28px;
}
.top-header h1 span{
  color:var(--red-color)
}
.top-header p{
  margin: 0;
}

.tiny-heading{
  font-size:13px;
  font-weight:500;
  color:var(--gray-color);
  text-transform: uppercase;

}

footer{
background:var(--black-color);
color:#ffffff;
}
footer ul{
  list-style: none;
  padding-left:0;
}
footer h2{
  font-size: 22px;
  margin-bottom:30px;
}
footer .footer-logo{
  width:200px;
  margin-bottom: 30px;;
}
fooer a{
  color:#ffffff!important;
  text-decoration: none;
}
fooer a:hover{
  color:var(--red-color);
  text-decoration: underline;
}
footer .copyrights{
  padding-bottom:30px;
  color:var(--gray-color);
}
footer .copyrights .col-md-6:nth-child(2){
  text-align:right;
}

@media screen and (max-width: 991px) {

.contact-info{
    display:none;
}
.logo img {
  width: 200px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
}
.main-header{
    padding: 20px 0px;
}
}
@media screen and (max-width: 767px) {
  .top-header {
  padding-left: 30px;
  padding-right:30px;
  }
  footer .copyrights .col-md-6:nth-child(2){
  text-align:left;
}
.global-nav {
  padding: 15px;
}

.logo img {
  width: 200px;
}
  .overlay-content nav a {
  font-size: 24px;
  margin: 14px 0;
  }
 .top-header h1{
  font-size:40px;
}
.top-header h2{
  font-size:20px
}

.top-header {
  height: 240px;
  background-size: cover!important; 
}
h2 {
    font-size: 28px;
}
.edge-to-edge h3 {
    margin-top: 100px;
}
.brand-box{
  margin-bottom:15px;
}
}







/*--Popup--*/
/* Overlay background */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* Popup content box */
.popup-content {
  background: #fff;
  margin: 15% auto;
  padding: 25px 30px;
  border-radius: 10px;
  max-width:600px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  color:var(--black-color)
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Optional: smooth fade-in */
.popup.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
