 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
   :root {
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(168, 239, 255, 1);
    --c2: rgba(168, 239, 255, 0.1);
}
   .glassy-navbar {
    background: rgba(0, 0, 0, 0.25); 
    backdrop-filter: blur(10px);
    /* border-radius: 20px; */
    padding: 10px 20px;
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid transparent;
    overflow: visible;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}
 
@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
  }
  
  @property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
    
  }
  
  @property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
    
  } 
  
  @keyframes borderRotate {
      100% {
          --angle: 420deg;
          
      }
  }
  
  


/* Navbar Items (Desktop) */
.desktop-menu {
    margin-left: auto; /* Push the menu to the right */
}

.desktop-menu .navbar-nav {
    display: flex;
    gap: 20px;
}
.navbar-brand img{
    width: 80px;
    height: auto;
    border-radius: 10px;
}
.navbar-nav .nav-link {
    color: white !important;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0276DB !important;
    text-shadow: 0px 0px 10px #0276DB !important;
}

/* Menu Button (Mobile Only) */
.menu-btn {
    display: none;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    margin-left: auto;

}
 
.mobile-contact-info {
    margin-top: 1rem;
    text-align: center;
  }
  
  .mobile-contact-info a {
    color: #fff; /* Adjust for your design */
    text-decoration: none;
  }

/* Mobile Fullscreen Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #141414;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 2000; /* Ensure it appears above all elements */
}

/* When active, bring the menu to the front */
.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    z-index: 2000; /* Ensure menu stays on top */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid white;
    padding: 8px 16px;
    font-size: 16px;
    color: white;
    border-radius: 15px;
    cursor: pointer;
}

/* Mobile Menu Links */
.mobile-menu {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.mobile-menu a span {
    font-size: 14px;
    color: gray;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons .icon {
    font-size: 20px;
}

/* Responsive: Hide Desktop Menu, Show Mobile Menu Button */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}


.btn-primary {
    color: #536468;
    background-color: #3296ec;
    border-color: #3296ec
}

.btn-primary:hover {
    color: #536468;
    background-color: #589dd9;
    border-color: #589dd9;
}



/* About US */

.hero-section {
    /* height: 100vh; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    padding: 50px;
    /* position: relative; */
}

.hero-title {
    font-size: 6rem;
    font-weight: 500;
    color: white; 
    line-height: 1.1;
}

.hero-subtext {
    font-size:1.8rem;
    color: #aaa;
    max-width: 850px;
    margin-top: 20px;
}

.hero-subtext .highlight {
    color: #777;
}

.about-text {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: left;
    color: #888;
    font-size: 2rem;
    text-transform: uppercase;
}


.video-section {
    display: flex;
    justify-content: center; 
    align-items: center;
     
    text-align: center;
}

.video-container {
    position: relative;
    width: 80%;
    /* max-width: 900px; */
    border-radius: 15px;
    overflow: hidden;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* .overlay-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
} */

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    gap: 10px;
    border: 1px solid #fff;
}
  

.overlay-text {
    animation: pulse 2s infinite;
}


.overlay-text button {
    background: none;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.overlay-text button:hover {
    background: rgba(255, 255, 255, 0.2);
}
 


.custom-section {
    background: linear-gradient(135deg, #9dc6e9, #4682b4);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.small-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0.2s forwards;
}

.main-heading {
    font-size: 4vw;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0.5s forwards;
}

.subtext {
    font-size: 1.5rem;
    max-width: 60%;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0.8s forwards;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-footer img{
    max-width: 500px;
}
 
 /* Make the table horizontally scrollable on mobile devices */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

/* Optional: Make the table full width */
.table {
  width: 100%;
}




.privacy-page {
    /* Use a subtle light background for a cleaner look */
    background-color: #f8f9fa; 
    /*font-family: "Raleway", sans-serif;*/
       font-family: "Open Sans", sans-serif;
  }
  
  .privacy-navbar{
    --c3: rgb(0, 0, 0);
    --c4: rgba(20, 212, 255, 0.1);
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c3) 0.1turn, var(--c4) 0.15turn, var(--c2) 0.25turn) 30;

  }
  .privacy-policy {
    /* Increase vertical spacing for a more open feel */
    margin-top: 130px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff; 
    border-radius: 8px;
    /* Box shadow for a slight “card” effect */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  
  /* Heading styles inside the privacy policy card */
  .privacy-policy h1,
  .privacy-policy h2 {
    color: #212529;
  }
  
  /* Paragraph and list text in the privacy policy card */
  .privacy-policy p,
  .privacy-policy li {
    color: #555555;
    line-height: 1.7;
  }
  
  /* Horizontal rule */
  .privacy-policy hr {
    border-top: 1px solid #dcdcdc;
  }
  
  
  
  /************************************************************
    FOOTER STYLES
  ************************************************************/
  .fotter-privacy {
    background-color: #222222;
    color: #ffffff;
    position: relative;
    padding-top: 50px; 
  }
  
  /* Footer headings and text */
  .fotter-privacy h3 {
    color: #ffffff;
    font-weight: 600;
  }
  .fotter-privacy li{
    list-style: none;
  }
  .fotter-privacy p,
  .fotter-privacy a {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
    text-decoration: none;

  }
  
  .fotter-privacy a:hover {
    color: #ffffff; 
  }
  
  /* “Contact Us” heading spacing */
  .fotter-privacy .text-200.my-4 {
    margin-bottom: 1rem !important;
  }
  
  /* Footer navigation links */
  .widget-list-link {
    display: block;
    color: #93AFB6;
    font-size: 0.875rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    transition: color 0.25s ease-in-out;
  }
  .widget-list-link:hover {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* The final black section at the bottom */
  .bg-black {
    background-color: #111111 !important;
  }
  
  /* Copyright text */
  .bg-black .fs--1 {
    font-size: 0.8rem;
    color: #888888 !important;
  }
  
 
  
  /************************************************************
    UTILITY CLASSES
  ************************************************************/
  /* Subtle hover effect on links inside the privacy policy container */
  .privacy-policy a {
    color: #007bff;
    transition: color 0.3s ease;
  }
  
  .privacy-policy a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .text-primary {
    color: #007bff !important;
  }
  
  .text-secondary {
    color: #868e96 !important;
  }
  

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    .about-text {
        font-size: 1.2rem;
        left: 10px;
    }

    .main-heading {
        font-size: 8vw;
    }
    .subtext {
        font-size: 1.2rem;
        max-width: 90%;
    }
    .logo-footer img{
        max-width: 100%;
    }

    
.overlay-text { 
    bottom: 5px; 
    font-size:0.8rem;
    width: max-content; 
    gap: 10px;
    padding: 5px 12px; 
}
.overlay-text button {
    
    width: 21px;
    height: 21px;
    font-size: 0.7rem;

}
}