

body {
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: #f7f7f7;
    
}

header {
    background-color: white; /* Add your desired background color */
    color: black; /* Add your desired text color */
    text-align: center;
    font-size: 16px;
    padding: 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure the header stays on top of other elements */
    display: flex;
    justify-content: space-between;
    /*align-items: center; /* Center the logo and header text vertically */
}

.video-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow: hidden;

}

video {
    width: 100%;
    height: auto;
    display: block;
}

img {
    height: 97px; /* Adjust the height of the logo as needed */
    margin-left: auto; /* Adjust the spacing between the logo and header text */
}

.logo {
    margin-left: 0px; /* Adjust as needed to create space between the logo and the left edge */
}
.links{
    flex-grow: 1;
    text-align: center;
}



.nav-links {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;    
    
}



.snav{
	background-color: white;
	position: fixed;
	z-index: 999;
	padding: 0px;
    flex-grow: 1;
    text-align: center;
	width: 100%;
}


.slinks {
    text-align: center;
    
    display: inline;
    font-size: 15px; 
	/* SMALLUNDER LINKS */
    
}



.spacer {
    margin-bottom: 100px; /* Adjust the value based on your spacing preference */
}
.spacer2 {
    margin-bottom: 50px; /* Adjust the value based on your spacing preference */
}
ul {
    /*list-style: none;*/

    padding: 0;
    margin-left: -30px;
    
}

li {
    text-align: center;
    padding: 10px;
    display: inline;
    font-size: 20px;
}


.menu-icon {
    margin-right: 20px;
    display: inline-block;
    cursor: pointer;
  /* Style the menu icon */
.bar1, .bar2, .bar3 {
    
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s

    /*text-align: center;
    float: right;
    cursor: pointer;*/
  }
}
/* Rotate first bar */
.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {opacity: 0;}

/* Rotate last bar */
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}


/*ANCHOR OFFEST */


a.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}





a {
    
    text-decoration: none;
    color: black; /* Add your desired link color */


    font-family: 'Rajdhani', sans-serif;

    font-weight: normal; /* Set the initial font weight */
    transition: font-weight 0.3s; /* Add a smooth transition effect for font weight changes */
}
a:hover {
    font-weight: bold;

}


.title, .section-title {
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Six Caps', serif; /* Specify the font you want to use */
    font-weight: initial; /* Adjust the font weight as needed */
    text-align: center;

}

.custom-text {
    
    font-family: 'Helvetica Neue', sans-serif; /* Specify the font you want to use */
    max-width: 800px; /* Set the maximum width for word wrapping */
    margin: 0 auto; /* Center the text by applying auto margins */
    line-height: 1; /* Set the line height for better readability */
    font-size: 18px;
    background-color: #f7f7f7;
}


.title {
    font-size: 2.5em; /* Adjust the font size for the main title */
}

.section-title {
    font-size: 5em; /* Adjust the font size for section titles */
    margin-top: 0px; /* Add spacing between section titles and content */
    background-color: #f7f7f7;

}


.section-title a {
    position: relative;
    color: black; /* Or your default title color */
    text-decoration: none;
    display: inline-block;
    font-family: 'Six Caps', serif;
    transition: all 0.3s ease;
}

.section-title a::before,
.section-title a::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  background: none;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.8;
}

.section-title a::before {
  color: cyan; /* Magenta offset */
  z-index: -1;
}

.section-title a::after {
  color: red; /* Cyan offset */
  z-index: -2;
}

.section-title a:hover {
  animation: glitch-flicker 1s .25 ease-out;
}

.section-title a:hover::before {
  animation: glitch-before 1s .25 ease-out;
}

.section-title a:hover::after {
  animation: glitch-after 1s .25 ease-out;
}

/* Main flicker + jitter */
@keyframes glitch-flicker {
  0% { transform: translate(0); opacity: 1; }
  10% { transform: translate(-2px, 2px); opacity: 0.8; }
  20% { transform: translate(2px, -1px); opacity: 0.9; }
  30% { transform: translate(-1px, 1px); opacity: 0.6; }
  40% { transform: translate(2px, 2px); opacity: 1; }
  50% { transform: translate(-2px, -2px); opacity: 0.7; }
  60% { transform: translate(1px, 1px); opacity: 1; }
  70% { transform: translate(-1px, -2px); opacity: 0.9; }
  80% { transform: translate(2px, 1px); opacity: 0.95; }
  90% { transform: translate(-2px, 1px); opacity: 0.85; }
  100% { transform: translate(0); opacity: 1; }
}
/* Pseudo element shifting for RGB split */
@keyframes glitch-before {
  0% { transform: translate(-1px, 0px); opacity: 0.8; }
  33% { transform: translate(25px, 0px); opacity: 0.4; }
  66% { transform: translate(-65px, 0px); opacity: 0.6; }
  100% { transform: translate(1px, 0px); opacity: 0.8; }
}

@keyframes glitch-after {
  0% { transform: translate(1px, 0px); opacity: 0.8; }
  33% { transform: translate(-25px, 0px); opacity: 0.4; }
  66% { transform: translate(65px, 0px); opacity: 0.6; }
  100% { transform: translate(-1px, 0px); opacity: 0.8; }
}







.image-section {
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px; /* Adjust as needed */
}

.image-container {
    width: 25vw; /* Set the container width to 100% of the viewport width */
    height: 25vh; /* Set the container height to 50% of the viewport height or adjust as needed */
     /* Hide any overflowing content */
    text-align: center;
}


.section-image {
    width: auto; /* Make the image fill the container horizontally */
    height: 100%; /* Make the image fill the container vertically */
    object-fit: cover;

}

h2 {
    font-family: 'Six Caps', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-family: 'Helvetica Neue', sans-serif;  
    font-size: 1em;
    color: #666; /* Optional: Add a color to the text blurb */
}


#content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  cursor: pointer;
}


#video-under{
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

#textoverlay{
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 6em;
    font-family: "Six Caps", sans-serif; /* Set text font family */
    z-index: 1;
}



#textoverlaysmall{
    position: absolute;

    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 2em;
    font-family: "Six Caps", sans-serif; /* Set text font family */
    z-index: 1;
}





/* Media query for mobile devices */
@media only screen and (max-width: 1000px) {
    #textoverlay{font-size: 3em;}
    #textoverlaysmall{font-size: 1em;}
    .section-title{font-size: 3em;}
    .custom-text{font-size: 12px;}
    .section-image{width: 70%}

    p{font-size: 12px;}
    h2{font-size: 1.5em;}
    nav ul {
        display: none; /* Hide the regular navigation */


    }




  /* Show the dropdown when the menu icon is clicked */
  nav.active ul {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
}




.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.six-caps-regular {
  font-family: "Six Caps", sans-serif;
  font-weight: 400;
  font-style: normal;
}
}
