:root {
    --hero-bg-color: rgba(26, 66, 100, 0.8);
    /* Overlay color */
}

/* Reusable Overlay Class */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hero-bg-color);
    z-index: 1;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    background-color: #1A427E;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
}


/* Retaining the same Hero Section Headings and Paragraphs Styles */
.hero-section h1 {
    font-family: 'Inter', sans-serif;
    /* Set font to Inter */
    font-size: 3rem;
    /* Set font size to 128px */
    font-weight: 800;
    /* Extra Bold */
    margin-bottom: 20px;
    color: white;
}

.hero-section p {
    font-family: 'Inter', sans-serif;
    /* Set font to Inter */
    font-size: 3rem;
    /* Set font size to 128px */
    font-weight: 400;
    /* Regular weight */
    margin-bottom: 30px;
    color: white;
}


.customBtn:hover {
    background-color: #341acb; /* Darker blue on hover */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    text-decoration: none;
  }

  .customBtn {
    padding: 1rem 2rem;
    margin: 1rem;
    font-size: 1.9rem;
    font-weight: 600;

    border-radius: 10rem;;
    
    }
/* nav - section  */


.navbar-nav .nav-item {
    margin-right: 30px;
    /* Adjust the space as needed */
}

.navbar-nav .nav-item:last-child {
    margin-right: 40px;
}




body {
    font-family: 'inter';
    background-color: #F8F9FA;
    /* Light background for better contrast */
}

.navbar {
    border-bottom: 1px solid #BBBBBB;
    background-color: #ffffff;
    /* Light background for navbar */
}

.nav-link {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    /* Primary color */
    padding: 20px;
    margin: 0px 20px;
    display: inline-block;
    position: relative;
    opacity: 0.75;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::before {
    transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: blue;
    /* Primary color for the underline */
}

.nav-item {
    position: relative;
    /* Required for the pseudo-elements */
}

.nav-link-ltr::before {
    width: 0%;
    bottom: 10px;
}

.nav-link-ltr:hover::before {
    width: 100%;
}



.image-container {
    position: relative;
    /* display: inline-block; */
}

.image2 {
    position: absolute;
    top: 78px;
    /* Adjust this value */
    left: 280px;
    /* Adjust this value */
}


#envison {
    background-color: #143361;
    /* Light grey background */
    /* padding: 20px;  */
}



.card {
    position: relative;
    margin: 10px;
    padding: 20px;
    /* Added padding for better spacing */
    background-color: white;
    /* Set card background to white */
    color: black;
    /* Set text color to black for better readability */
}

.start-line {
    width: 5px;
    /* Width of the vertical line */
    background-color: blue;
    position: absolute;
    top: 0;
    /* Position at the top of the card */
    left: 0;
    /* Align to the left */
    bottom: 0;
    /* Stretch to the bottom */
}

.vertical-line {
    border-left: 2px solid white;
    /* Vertical line color and width */
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    /* Place the line on the right side */
}

.horizontal-line {
    height: 3px;
    background-color: grey;
    margin: 20px 0;
}




.logo-section {
    text-align: center;
    margin-top: 20px;
    /* Adds space above the logos */
}

.logo-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns */
    gap: 20px;
    /* Space between logos */
    margin: 0 auto;
    /* Centers the container */
}

.logo {
    width: 100px;
    /* Width of each logo */
    height: 150px;
    /* Height of each logo */
    object-fit: contain;
    /* Maintains aspect ratio */
    transition: transform 0.3s;
    /* Adds hover effect */
}

.logo:hover {
    transform: scale(1.1);
    /* Slightly enlarges logo on hover */
}


#excellence {
    padding: 20px;
    /* Optional: adds some padding */
    background-color: rgba(187, 209, 242, 1);


}

.tab-item {
    background-color: white;
    /* Permanent white background */
    color: #333;
    /* Default dark text color */
    border: 1px solid #ddd;
    /* Light border */
    margin: 5px;
    /* Space around each tab */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition */
}

.tab-item:hover {
    background-color: #f1f1f1;
    /* Slightly darker white on hover */
    color: #333;
    /* Dark text color on hover */
}

.tab-item.active {
    background-color: #507fed;
    /* Blue background for active tab */
    color: white;
    /* White text for active tab */
    border-color: #507fed;
    /* Blue border for active tab */
}


#tech {
    background-color: #F3F7FE;
    /* Light grey background */
    padding: 20px;
}

/* contact form  */

.custom-background-contact-section {
    background: rgba(80, 143, 237, 0.07);
}


.custom-bg-contact-info {
    background-color: rgba(26, 66, 126, 0.79);
}

.custom-bg-contact-button {
    background-color: rgba(26, 66, 126, 1);
    color: white;
}

.rounded-input {
    height: 2px;
    /* For inputs */
    border-radius: 100px;
}

.rounded-textarea {
    height: 2px;
    /* For textarea */
    border-radius: 100px;
}









.map-section {
    background-color: #f8f9fa;
    /* Light grey background */
    padding: 50px;
    /* that with is here is getting padding 50 0 ; */
    /* Spacing around the section */
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}


/* centers of excellence page cards css */
/* :start */
.folded-corner {
    padding: 25px 25px;
    position: relative;
    font-size: 90%;
    text-decoration: none;
    color: #fff;
    background: transparent;
    transition: background-color ease .5s, border-color ease .5s;
    border: 8px solid #D6EAF8;
}
.folded-corner:hover {
    background-color: #fff;
}

.folded-corner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 0px 0px 0;
    border-color: #ddd #fff;
    transition: all ease .5s;
}

.folded-corner:hover:before {
    background-color: #D00003;
    border-width: 0 50px 50px 0;
    border-color: #eee #4a9cba;
}

.service_tab_1 {
    background-color: #305b78;
    height: 250px;
}

.text h3, .text p {
    color: #fff;
    transition: color ease .2s;
}

.folded-corner:hover .text h3,
.folded-corner:hover .text p {
    color: #4a9cba;
}
/* end  */


/* technology carseols start */

/* Unique wrapper to isolate styles */
#jeff-wrapper {
    /* width: 100vw;
    height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: white;
  }
      /* Style for the heading */
#jeff-wrapper h5 {
font-size: 24px;
font-weight: bold;
color: #333;
margin: 0 0 20px 0; /* Margin below the heading */
/* padding: 10px 20px; */
border-radius: 8px;
background-color: #f5f5f5;
/* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
text-align: center;
}

/* Scoped styles for #jeff and its contents */
#jeff-wrapper #jeff {
width: 1100px;
height: 400px;
overflow: hidden;
box-shadow: inset 20px 0px 30px white, inset -20px 0px 30px white;
}

  /* Scoped styles for #jeff and its contents */
  #jeff-wrapper #jeff {
    width: 1100px;
    height: 400px;
    overflow: hidden;
    box-shadow: inset 20px 0px 30px white, inset -20px 0px 30px white;
  }

  #jeff-wrapper .row {
    height: 100%;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #jeff-wrapper .stack {
    height: 100%;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: toTheLeft 50s infinite linear;
    z-index: 1;
  }

  #jeff-wrapper .stack.reverse {
    animation: toTheRight 30s infinite linear;
    z-index: -1;
  }

  #jeff-wrapper img {
    height: 220px;
    width: 220px;
    margin: 90px;
    /* filter: grayscale(100%); */
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  #jeff-wrapper img:hover {
    transform: scale(2);
  }

  /* Scoped keyframes */
  @keyframes toTheLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  @keyframes toTheRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0%);
    }
  }
/* end  */