html,.myNav {
    li a {
        display: block;
        color: rgb(255, 255, 255);
        text-align: leftright;
        padding: 12px 25px;
        text-decoration: none;
      }
  li {
    float:right;
    a:is(:link, :active, :visited).active{
    color: white;
    background-color: #000000;

  }
  .activeLink{ 
  color: rgb(255, 255, 255);
  padding: 22px;
  text-decoration: none;
}
  .activeLink{
    background-color:rgb(250, 107, 24);
    color:rgb(255, 255, 255)
  }
  a:is(:link, :active, :visited).active{
    color: white;
    background-color: #160909;

  }
  #scrollUp {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    background: #1a76d1;
    color: #ffffff;
    font-size: 45px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0;
    border-radius: 3px;
    box-shadow: 0px 0px 10px #bebdbd;
  }
  /* Basic styling for body */
  body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navigation Bar styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 20px 20px;
}

/* Logo styling (video format) */
.navbar .logo-video {
    width: 50px;
    height: 50px;
}

/* Navigation Links styling */
.navbar a {
    color: rgb(255, 255, 255);
    padding: 20px 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    margin-left:100%;
}

/*Left align the home button*/
.nav a .home-button {
    margin-left: auto;
}

.navbar a:hover {
    color: #ffa500; /* Orange color on hover */
}

/* Main Video Styling */
.main-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    align-content: center;
    overflow: hidden;
}
div.center {
    text-align: center;
  }


/* Center video full-screen */
.main-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fullpage;
}

/* Text overlay styling */
.main-video-container .overlay-text {
    position: absolute;
    top: 20px;
    left: 0%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255);
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7);
    
}
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}
header {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    text-align: center;
    
}

nav a {
    color: rgb(255, 255, 255);
    padding: 25px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    
}
nav a:hover {
    background-color: #ffffff;
    border-radius: 5px;
}
section {
    padding: 50px;
    text-align: center;
}

}
.content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
footer {
    background-color: #000000;
    color: #ffffff;
    /* padding: 20px; */
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Services Section */
.services {
    display: flex;
    justify-content: centeright;
    gap: 30px;
    margin-top: 50px;
}
.service-box {
    text-align: right;
    padding: 20px;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(255, 255, 255);
    width: 200px;
}
.service-box i {
    font-size: 100px;
    color: #ff5e00;
    margin-bottom: 10px;
}
.service-box h3 {
    margin-top: 10px;
}
  #scrollUp:hover{
    background:#000000;
  }
  .header .top-contact{
    float:right;
  }
  .header .top-contact li{
    display:inline-block;
    margin-right:5px;
    color:#000000;
  }
  
/* button */
.btn {
    padding: 20px 80px;
    border: none;
    outline: none;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px; 
}
.btn::after {
 content:"";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    left: 0;
    top: 0;
    border-radius: 10px;
}
/* glow */
.btn::before {
    content: "";
    background: linear-gradient(
        45deg,
        #FF0000, #FF7300, #FFFB00, #48FF00, 
        #00FFD5, #002BFF, #FF00CB, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}

/* hover */
    .btn:hover::before {
        opacity: 1;
    }
    
    .btn:active:after {
         background: transparent;
    }

    .btn:active {
        color: #000;
        font-weight:lighter;
    }
     .logo::before{
        height: 25%;
     }
  
/* Overlay Text head Styling */
.overlay-text head {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(250, 107, 24);
    font-size: 2rem;
    text-align:left;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
/* Overlay Text Styling */
.overlay-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 4rem;
    text-align: left;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
}
/* Overlay Text Styling */
.overlay-textparagraph {
    position: absolute;
    top: 30%;
    left: 40%;
    right: 5%;
    color: rgb(0, 0, 0);
    font-size: 1.4rem;
    text-align: left;
}
    

  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
  } 



/* hover */
    .btn:hover::before {
        opacity: 1;
    }
    
    .btn:active:after {
         background: transparent;
    }

    .btn:active {
        color: #1f1f1f;
        font-weight:bolder;
    }
     .logo::before{
        height: 25%;
     }
     /* Set the width of the side navigation to 250px */
function openNav() {
    document.getElementById("mySidenav").style.width = "250px";
  }
  
  /* Set the width of the side navigation to 0 */
  function closeNav() {
    document.getElementById("mySidenav").style.width = "0";
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-section {
    background-color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
}

h1 {
    /* text-align: center; */
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    /* text-align: center; */
    color: #ffffff;
    margin-bottom: 20px;
}
.about-container {
    /* position: absolute; */
    margin-top: 25%;
}

.about-container h1,
.about-container h3,
.about-container p {
 color: black;
}

.container2{
    width: 100%;
    /* margin: 50px auto; */
    background: #fff;
    /* padding: 20px; */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-start;
    /* min-height: 200px; */
    box-sizing: content-box;
    position: relative;
    /* float: left; */
}
.container3{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    gap: 20px;
    flex-grow: 0;
    overflow: hidden;
}
.services-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-grow: 0;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
    flex: 1;
    z-index: -999 !important;
    margin-top:15%;
}
/* Flex container for carousel and tabs */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    gap: 20px;
    flex-grow: 0; /* Prevents container from growing and pushing footer */
    overflow: hidden; /* Prevents overflow */
}

/* Carousel container */
.carousel-container {
    width: 50%; /* Ensure carousel container takes up 50% width */
    height: 400px; /* Adjusted height for carousel */
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Prevents shrinking */
    z-index: -999;
}
.contactus-container{
    width: 80%;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}
.contactus-container .h1{
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.contactus-container h1 {
    color: #000000;
}
.contactus-container h4 {
    color: #000000;
}
.contactus-container label {
    font-weight: bold;
}
.contactus-container input[type="text"], .contactus-container input[type="email"], .contactus-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.contactus-container input[type="submit"] {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    display: block;
    margin: 20px auto;
}
.contactus-container input[type="submit"]:hover {
    background-color: #4cae4c;
}
.contactus-container .required::after {
    content: " *";
    color: red;
}


.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative; /* or another position */
    overflow: hidden;
    /* animation: slide 60s infinite !important; */
    transition: transform 0.5s ease;
}
.carousel-slide:hover {
    transform: translateX(100px); /* Change on hover */
  }

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -999;
}

.reset-this-root {
    all: initial;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Tabs container */
.tabs-container {
    width: 50%; /* Ensure tabs container takes up 50% width */
    height: 400px; /* Adjusted height for tabs container */
    display: flex;
    flex-direction: column;
    padding: 5% 10px 10px 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable vertical scroll */
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab {
    padding: 12px;  /* Reduced padding for a tighter look */
    color: white;
    cursor: pointer;
    margin: 5px 0;  /* Reduced vertical margin to make tabs closer */
    border-radius: 0%;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

/* Industry Colors */
.tab.Pharma { background-color: #3FBF9D; }
.tab.HealthCare { background-color: #F5E1A6; }
.tab.Technology { background-color: #3FBF9D; }
.tab.Ebooks { background-color: #3FBF9D; }
.tab.Banking { background-color: #3FBF9D; }
.tab.Education { background-color: #F5E1A6; }
.tab.AI { background-color: #F5E1A6; }

.sub-industries {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 0px;
    padding: 5px;
    margin-top: 5px;
}

.sub-industry {
    margin: 5px 0;
    cursor: pointer;
    padding: 5px;
    border-radius: 0;
    background: linear-gradient(to right, #0072c6, #0099e6);
    transition: background 0.3s;
}

.sub-sub-industries {
    display: none;
    margin-top: 5px;
    padding: 5px;
    border: 5px solid #ccc;
    border-radius: 0px;
    background-color: #e9ecef;
}

.footer-icons a {
    margin: 0 5px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

/* Hover effects for tabs */
.tab:hover {
    transform: scale(1.05);
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack carousel and tabs vertically */
    }

    .carousel-container,
    .tabs-container {
        width: 100%; /* Each container takes full width */
        height: 300px; /* Adjusted height for mobile */
    }
}

/* Transitions for showing and hiding elements */
.sub-industries, .sub-sub-industries {
    display: none;
    transition: all 0.3s ease;
}

.sub-industries.visible, .sub-sub-industries.visible {
    display: block;
}


.service {
    width: 300px; /* Width for rectangular containers */
    height: 125px; /* Height for rectangular containers */
    margin: 20px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px; /* Add padding for better layout */
}
.service h2 {
    margin: 0;
    font-size: 12px; /* Font size for service title */
    z-index: 2; /* Ensure title is above description */
}
.service:nth-child(odd) { background-color: #00fff248; }
.service:nth-child(even) { background-color: #f5e1a63f; }

.service:hover {
    transform: scale(1.5); /* Slightly larger on hover */
}
/* Full overlay for description */
.description {
    display: none; /* Initially hidden */
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center using transform */
    background-color: rgb(255, 94, 0);
    color: #000000;
    padding: 10px;
    border-radius: 10px; /* Rounded corners for description */
    z-index: 1;
    text-align: left;
    transition: opacity 0.3s;
    opacity: 0;
    width: 90%; /* Set width for description */
    height: auto; /* Allow height to grow */
    overflow: visible; /* Ensure overflow is visible */
    font-size: 12px; /* Font size for description */
}
.service:hover .description {
    display: block; /* Show on hover */
    opacity: 1; /* Fully visible */
}
 .cta-container {
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: white;
    color: black;
    margin-bottom:5%;
}
.cta a {
    background-color: #2C3E50;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.cta a:hover {
    background-color: #1A2421;
}
.thank-you-container {
    width: 60%; /* Same width as contact form container */
    margin: 50px auto; /* Center the container */
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* Fixed Height to Match Contact Form Container */
    height: 200px;
}