/* Define colour variables */
:root {
    --primary-color: #8CDD00; /* Blue */
    --primary-light: #BEF264;  /* Darker Blue for hover */
    --secondary-color: #FFC973; /* Light background color */
    --secondary-light: #FFE3B3;
    --text-color: #001C38; /* Default text colour */
    --link-color: #8CDD00; /* Link colour */
    --link-hover-color: #0056b3; /* Link hover colour */
    --footer-bg: #333; /* Footer background */
    --footer-text: #fff; /* Footer text colour */
}

/* Regular weight */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Medium weight (500) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_18pt-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Semi-Bold weight (600) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_18pt-SemiBold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold weight (700) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_24pt-Bold.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Extra-Bold weight (800) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_24pt-ExtraBold.ttf") format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Italic Style (Normal weight) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_24pt-RegularItalic.ttf") format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Medium Italic Style (500 weight) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_24pt-MediumItalic.ttf") format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Bold Italic Style (700 weight) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_28pt-BoldItalic.ttf") format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Extra-Bold Italic Style (800 weight) */
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf") format('truetype');
    font-weight: 800;
    font-style: italic;
}

  

/* Apply the Inter font family globally */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: var(--text-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Resetting some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for max-width content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Styling for headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}



.home-banner {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .home-banner {
    height:500px;
  }
}

  
  .home-banner .video {
    max-width: none;
    min-width: 100%;
  }
  
  .home-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(0 0 0 / 50%); 
  }
  
  .home-banner .banner-content {
    position: absolute;
    top: 40%;   
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    width: 95%;
  }

.banner-content .rotate{
    width: 100%;
    margin: 20px auto;
    font-weight: 800;
}
  
  .home-banner h2{
    font-size: 90px;
    font-weight: 700;
  }


/* Button styling */
button {
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-dark);
}

/* Add some spacing between sections */
section {
    margin-bottom: 40px;
    padding:10px 10px;
    overflow: hidden;
}


/* Footer styling */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly smaller font size for mobile */
    }

    .container {
        padding: 0 10px; /* Less padding on mobile */
    }

    header, footer {
        padding: 15px 0;
    }

    section {
        margin-bottom: 10px;
    }
    
}


.keywords-slider-1.owl-carousel .owl-stage, .keywords-slider-2.owl-carousel .owl-stage{
    padding: 30px 0px 20px 0px;
}

.fold {
    position: relative;
    background: #fff;
  }
  /* folding */
  .fold::before {
    content:"";
    position: absolute;
    top: 0px;
    right: 0px;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: #ddd #9d9d9d;
    transition: all ease 0.5s;
  }
  .fold:hover::before {
    border-width: 0 0px 0px 0;
    border-color: #eee #9d9d9d
  }


.btn-primary{
    background: var(--primary-light);
    line-height: 40px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover{
    background: none;
    color:  var(--primary-color);
}

.btn-secondary{
    background: none;
    line-height: 40px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    border: 1px solid black;
}

.btn-secondary:hover{
    background: black;
    color: #fff;
}

/* Keyframe animation for the pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);  /* Scale up the element */
        opacity: 0.8;  /* Slightly fade out */
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes blink {50% { color: transparent }}
.loader__dot { animation: 1s blink infinite; color:var(--primary-light)}
.loader__dot:nth-child(2) { animation-delay: 250ms }
.loader__dot:nth-child(3) { animation-delay: 500ms }


.fade-out {
  animation: fadeOut 0.5s forwards;
}

.fade-in {
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeOut {
  to {
      opacity: 0;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Add pulse animation to spans */
.pulse {
    animation: pulse 1.5s infinite; /* 1.5s duration, infinite looping */
}

.blur-back{
    background-color: hsla(0, 0%, 100%, .5);
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.4s;
}