:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4154f1; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #012970;  /* The default color of the main navmenu links */
    --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }

    .section {
        opacity: 0;
        transform: translateY(100px);
        transition: transform 0.7s ease, opacity 0.7s ease; 
    }


    .section.visible {
        opacity: 1;
        transform: translateY(0); 
    }
    


    /*-------------------------------------------------------------
                    Home Page Start    
    ---------------------------------------------------------------*/
    /*------------------------------------
    # Banner
    --------------------------------------*/
    .banner {
        width: 100%;
        height: 620px;
        position: relative;
        padding: 80px 0 60px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(../img/bg-banner.png) top no-repeat;
        background-size: cover;
        @media (max-width: 500px){
            height: 400px;
        }
    }

    .banner-content {
        display: flex; 
        align-items: center; 
        justify-content: center; 
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease, transform 1s ease; 
    }
    .banner-content.visible {
        opacity: 1;
        transform: translateY(0);
      }

    .banner img{
        height: 130px;
        
        @media (max-width: 500px){
            height: 80px;
        }
    }
    .banner-speech {
        background-color: #031029da;
        justify-content: center;
        text-align: center;
        padding: 15px;
        @media(max-width:560px){
            padding: 5px;
        }
    }
    .banner-speech h1{
        color: white;
        margin: 0;
        font-size: 36px;
        font-weight: 400;
        line-height: 48px;

        @media (max-width:932px){
            font-size: 30px;
        }
        @media(max-width:746px){
            font-size: 22px;
        }
        @media(max-width:560px){
            font-size: 15px;
        }
    }


    /*--------------------------------------------------------------
    # About Section
    --------------------------------------------------------------*/
    .about .content {
        background-color: rgba(6, 58, 54, 0.078);
        padding: 40px;
    }
    
    .about .content h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-color);
        text-transform: uppercase;
    }
    
    .about .content h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-color);
        text-transform: uppercase;
    }
    
    .about .content p {
        margin: 15px 0 30px 0;
        line-height: 24px;
    }
    
    .about .content .btn-read-more {
        color: var(--contrast-color);
        background: #031029da;
        line-height: 0;
        padding: 15px 40px;
        border-radius: 4px;
        transition: 0.5s;
        box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    }
    
    .about .content .btn-read-more span {
        font-family: var(--default-font);
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .about .content .btn-read-more i {
        margin-left: 5px;
        font-size: 18px;
        transition: 0.3s;
    }
    
    .about .content .btn-read-more:hover i {
        transform: translateX(5px);
    }


    /*---------------------------
      Win-Card
    ---------------------------*/
    .row-content{
        display:flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top:2%;
    }
    .ami-win-card{
        width:475px;
        margin:1%;
    }

    .box {
        background: var(--g2, linear-gradient(327deg, #035661 0.35%, #021b29 33.59%, #50a9d6 72.21%, #011c31 96.67%));
        border: solid 1px #00D1FF;
        backdrop-filter: blur(300px);
        opacity: 1 !important;
        mix-blend-mode: inherit;
        height: 250px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box:hover {
        background: var(--g2, linear-gradient(147deg, #302545 0.35%, rgba(143, 123, 168, 0.704) 33.59%, #042968 72.21%, #0165ED 96.67%));
    }

    #featured {
        background: var(--g2, linear-gradient(327deg, #035661 0.35%, #021b29 33.59%, #50a9d6 72.21%, #011c31 96.67%));
        border: solid 1px #00D1FF;
        backdrop-filter: blur(21.494609832763672px);
        height: 250px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #featured:hover {
        background: var(--g2, linear-gradient(147deg, #302545 0.35%, rgba(143, 123, 168, 0.704) 33.59%, #042968 72.21%, #0165ED 96.67%));
    }

    .box h1 {
        color: #FFF;
        text-shadow: 63.109px 55.827px 86.654px rgba(0, 107, 255, 0.40);
        font-family: Montserrat;
        font-size: 68px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        /* padding-left: 14%; */
    }
    
    .box h4 {
        color: #FFF !important;
        font-family: Montserrat;
        font-size: 30.56px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        /* padding-left: 14%; */
    }

    .featured h1 {
        color: #FFF;
        text-shadow: 63.109px 55.827px 86.654px rgba(0, 107, 255, 0.40);
        font-family: Montserrat;
        font-size: 68px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        /* padding-left: 14%; */
    }

    .featured h4 {
        color: #FFF;
        text-shadow: 63.109px 55.827px 86.654px rgba(0, 107, 255, 0.40);
        font-family: Montserrat;
        font-size: 30.56px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        /* padding-left: 14%; */
    }

    @media (max-width:850px){
        .row-content{
            display:flex;
            justify-content: space-evenly;
            align-items: center;
            flex-direction: column;
            align-content:center;
        }
        .box h4{
            font-size:large;
        }
        .featured h4{
            font-size:large;
        }
    }
    @media (max-width:650px){
        .ami-win-card{
            width:90%;
        }
    }


    /*-------------------------
     Qualities
    -------------------------*/
    .quality {
        margin-top:5%;
        background-color: rgba(6, 58, 54, 0.078);
        box-shadow: 0 -4px 10px rgba(93, 165, 246, 0.75);
    }

    .quality .quality-content {
        text-align: center;
    }

    .quality-content h{
        margin: 10px 50px;
    }
    .quality-content p{
        margin: 2% 20%;
    }

    @media(max-width:600px) {
        .quality-content p{
            margin: 2% 8%;
        }
    }


    /*------------------------
        Services Section
    ------------------------*/
     /* Main container for the section */
     .services-section {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
      }
      .col-lg-6 {
        width: 50%; 
        padding: 0;
        box-sizing: border-box;
      }
      .video-column video {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        border-radius: 10px 0px 0px 10px;
      }
      .text-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        background-color: #04283fe4;
        border-radius: 0px 10px 10px 0px;
      }
      .text-column h3 {
        color: white;
        text-align: right;
      }

      .services-boxes {
        display: flex;
        flex-wrap: wrap;
        gap: 15px; 
      }
      
      .service-box {
        flex: 1;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        text-align: center;
        color: white;
        border: 1px solid #ffffff;
      }
      .service-box:hover {
        border: 1px solid #ee0f94;
      }

      .service-box i{
        font-size: 50px;
        color: rgb(240, 54, 104);
      }
      
  
      @media (max-width: 992px) {
        .col-lg-6 {
          width: 100%; 
        }
        .video-column video {
            border-radius: 10px 10px 0px 0px;
        }
        .text-column {
            border-radius: 0px 0px 10px 10px;
        }
        .text-column h3 {
            text-align: center;
        }
        .service-box i{
            font-size: 30px;
        }
      }



    /*-------------------------
     Values
    -------------------------*/
    .win-container{
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
        /* padding-top: 5vh;
        padding-bottom: 5vh; */
    }
    .win .section-title h2 {
        font-size: medium;
        font-weight: 800;
        /* margin-bottom: 20px; */
        padding-bottom: 0;
        font-family: 'Montserrat';
        /* color: #00D1FF; */
        /* color: linear-gradient(212.08deg, #00D1FF -4.77%, #018BE3 88.42%),linear-gradient(0deg, #0188E2, #0188E2); */
    }

    .win .section-title {
        text-align: center;
        /* padding-bottom: 30px; */
        margin-top: -2%;
    }
    
    .win .section-title h2 {
        font-size: xx-large;
        font-weight: 800;
        /* margin-bottom: 20px; */
        padding-bottom: 0;
        font-family: 'Montserrat';
    }
    .win-tiles-container {
        width: 100%;
    }
    
    .win-tiles-container-bg-img {
        position: absolute;
        top: 32%;
        height: 41vh;
        left: 0;
        z-index: -1;
        display: block;
    }
    
    .tiles-container {
        display: flex;
        width: 80%;
        margin: auto;
        align-items: center;
    }
    .win-first-tile-img {
        height: auto;
    }
    .first-tile {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    .win-second-tile-img {
        height: auto;
    }
    .second-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .win-third-tile-img {
        height: auto;
    }

    .third-tile {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .content-tile {
        text-align: left;
        padding: 10% !important;
    }
    
    .content-tile>h4 {
        font-size: large;
        text-transform: uppercase;
        background: linear-gradient(282deg, #00D1FF 29.86%, #018BE3 69.01%);
        background-clip: none;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        padding: 2%;
    }
    
    .content-tile>p {
        font-size: large;
        /* font-weight: bold; */
        padding: 2%;
    }

    @media (max-width:1550px){
        /* .win-image-container .win-image{
        height:85vh;
        }*/
        .win-tiles-container-bg-img {
        height: 35vh;
        }
        .win-first-tile-img {
        height: 25vh;
        }
        .win-second-tile-img {
        height: 35vh;
        }
        .win-third-tile-img {
        height: 50vh;
        }
    }

    @media (max-width:1400px){
        /* .win-image-container .win-image{
        height:75vh;
        }
        .dark .win-image-container .win-image-dark{
        height:75vh;
        } */
        .win-tiles-container-bg-img {
        height: 33vh;
        }
        .win-first-tile-img {
        height: 25vh;
        }
        .win-second-tile-img {
        height: 33vh;
        }
        .win-third-tile-img {
        height: 45vh;
        }
    }
    @media (max-width:1300px) {
        .win-tiles-container-bg-img {
        height: 31vh;
        }
        .win-first-tile-img {
        height: 30vh;
        }
        .win-second-tile-img {
        height: 35vh;
        }
        .win-third-tile-img {
        height: 45vh;
        }
    }
    @media (max-width:1200px){
        .tiles-container{
        flex-direction: column;
        }
        .win-tiles-container-bg-img {
        display:none;
        }
        .win-first-tile-img {
        height: 17vh;
        }
        .win-second-tile-img {
        height: 25vh;
        }
        .win-third-tile-img {
        height: 35vh;
        }
        .first-tile {
        display: flex;
        flex-direction: row;
        align-items: center;
        }
        .second-tile {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        }
        .third-tile {
        display: flex;
        flex-direction: row;
        align-items: center;
        }
        .content-tile {
        text-align: left;
        padding: 5% !important;
        }

        .win-image-container .win-image{
        height:40vh;
        }
    }
    @media (max-width:850px){
        .win-image-container .win-image{
            background: url(assets/img/steps_to_win_light_mobile.png);
            max-width:90%;
            height:87vh;
            background-size: cover;
        }
        .content-tile>h4 {
            font-size: small;
        }

        .content-tile>p {
            font-size: small;
        }
            }
    @media (max-width:500px){
        .win .section-title h2 {
            font-size: medium;
            font-weight: 800;
            /* margin-bottom: 20px; */
            padding-bottom: 0;
            font-family: 'Montserrat';
            /* color: #00D1FF; */
            /* color: linear-gradient(212.08deg, #00D1FF -4.77%, #018BE3 88.42%),linear-gradient(0deg, #0188E2, #0188E2); */
        }
        .win-image-container .win-image{
            background: url(assets/img/steps_to_win_light_mobile.png);
            max-width:90%;
            height:54vh;
            background-size: cover;
        }
        .tiles-container{
            flex-direction: column;
            width: 90%;
            }
            .win-tiles-container-bg-img {
            display:none;
            }
            .win-first-tile-img {
            height: 10vh;
            }
            .win-second-tile-img {
            height: 15vh;
            }
            .win-third-tile-img {
            height: 20vh;
            }
            .content-tile>h4 {
            font-size: x-small;
            }

            .content-tile>p {
            font-size: x-small;
            }
    }
/*-------------------------------------------------------------
                    Home Page End    
---------------------------------------------------------------*/


/*-------------------------------------------------------------
                    About Page Start   
---------------------------------------------------------------*/

/*-------------------------------------------------------------
                    About Page End   
---------------------------------------------------------------*/



/*-------------------------------------------------------------
                    Services Page Start   
---------------------------------------------------------------*/
/*-------------------------------------
    # Services Section
-------------------------------------*/
        .services .service-item {
            background-color: var(--surface-color);
            box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            padding: 60px 30px;
            text-align: center;
            transition: 0.3s;
            border-radius: 5px;
        }
        
        .services .service-item .icon {
            font-size: 36px;
            padding: 20px 20px;
            border-radius: 4px;
            position: relative;
            margin-bottom: 25px;
            display: inline-block;
            line-height: 0;
            transition: 0.3s;
        }
        
        .services .service-item h3 {
            font-size: 24px;
            font-weight: 700;
        }
        
        .services .service-item .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 20px;
        }
        
        .services .service-item .read-more i {
            line-height: 0;
            margin-left: 5px;
            font-size: 18px;
        }
        
        .services .service-item.item-cyan {
            background: rgba(182, 231, 241, 0.212);
            border-bottom: 3px solid #0dcaf0;
        }
        
        .services .service-item.item-cyan .icon {
            color: #0dcaf0;
            background: rgba(13, 202, 240, 0.1);
        }
        
        
        .services .service-item.item-cyan:hover {
            background: rgba(13, 202, 240, 0.303);
        }
        
        .services .service-item.item-violet {
            background:  #c8c5fc3d;
            border-bottom: 3px solid #827ded;
        }
        
        .services .service-item.item-violet .icon {
            color: #827ded;
            background:  #9994ff23;
        }
        
        
        .services .service-item.item-violet:hover {
            background:  #9994ff5b;
        }
        
        .services .service-item.item-teal {
            background: rgba(22, 240, 175, 0.068);
            border-bottom: 3px solid #20c997;
        }
        
        .services .service-item.item-teal .icon {
            color: #20c997;
            background: rgba(32, 201, 151, 0.1);
        }
             
        .services .service-item.item-teal:hover {
            background: rgba(1, 255, 204, 0.259);
        }
        
        .services .service-item:hover .icon {
            background: #fff;
        }


/*-------------------------------
        # Stats Section
-------------------------------*/
        .stats .stats-item {
            background-color: rgba(180, 205, 215, 0.189);
            padding: 30px;
        }
        .stats .stats-item:hover {
            border-radius: 5px;
            border: 1px solid #827deda7;
            background-color: rgb(234, 247, 255);
            box-shadow: 0px 0 30px rgba(161, 136, 198, 0.677);
        }
        
        .stats .stats-item i {
            color: var(--accent-color);
            font-size: 42px;
            line-height: 0;
            margin-right: 20px;
        }
        
        .stats .stats-item span {
            color: var(--heading-color);
            font-size: 36px;
            display: block;
            font-weight: 600;
        }
        
        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 16px;
        }    

    /*------------------------
        Service Speech
    ------------------------*/
    .service-content {
        background-color: rgba(6, 58, 54, 0.078);
        padding: 30px;
        height: auto;
    }

    .service-content p {
        font-size: large;
        margin: 15px 0 30px 0;
        line-height: 24px;
    }
    
    .service-content .btn-read-more {
        width:auto;
        color: var(--contrast-color);
        background: #031029da;
        line-height: 0;
        padding: 15px 10px;
        border-radius: 4px;
        transition: all 0.5s;
        box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    }
    
    .service-content .btn-read-more span {
        font-family: var(--default-font);
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .service-content .btn-read-more i {
        margin-left: 5px;
        font-size: 18px;
        transition: 0.3s;
    }
    
    .service-content .btn-read-more:hover i {
        transform: translateX(5px);
    }
/*-------------------------------------------------------------
                    Services Page End   
---------------------------------------------------------------*/



/*-------------------------------------------------------------
                    Contact Page Start   
---------------------------------------------------------------*/


/*-------------------------------------------------------------
                    Contact Page End   
---------------------------------------------------------------*/



/*-------------------------------------------------------------
                    Career Page Start   
---------------------------------------------------------------*/

/*--------------------------
    Career Top Section
--------------------------*/
        .career-top-section{
            width:100%;
        }
        .career-content {
            display: flex;
            flex-wrap: wrap;
            border-radius: 15px;
        }

        .img-column,
        .career-text {
            width: 50%;
            transition: all 0.3s ease;
        }

        .career-text {
            border-radius: 0px 10px 10px 0px;
        }

        .career-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px 0px 0px 10px;
        }

        /* Text Content Styling */
        .career-text {
            background-color: #cce2f152;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
           
        }
        .careers-header {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #555b75;
            letter-spacing: 1px;
            background: linear-gradient(to right, #007bff, #00c6ff);
            -webkit-background-clip: text;
            border-bottom: 2px solid #3b7ba2;
            width: 100%;
            animation: fadeInDown 1s ease-in-out;
        }
        .careers-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            animation: fadeIn 2s ease-in-out;
        }

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

        @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Responsive Styling */
        @media (max-width: 992px) {
            .career-container {
                display: flex;
                flex-direction: column;
            }
            .img-column,
            .career-text {
                width: 100%; 
            }
            .img-column img {
                border-radius: 10px 10px 0px 0px;
            }
            .career-text {
                border-radius: 0px 0px 10px 10px;
                padding: 30px 15px;
            }
      }


/*---------------------------
    Career Form
----------------------------*/
 /* Container */
 .careers-section {
    font-family: 'Roboto', sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    height: auto; 
    display: flex;
    width:100%;
    justify-content: center;
    align-items: center; 
}
    /* Container */
.careers-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: box-shadow 0.5s ease;
}

.careers-container:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-head {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #555b75;
    letter-spacing: 1px;
        
}

/* Form */
.careers-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: bold;
    color: #3b7ba2;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3b7ba2;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Resume Upload */
.resume-upload {
    display: flex;
    flex-direction: column;
}

.resume-upload input[type="file"]::file-selector-button {
    margin:5px;
    padding: 8px 18px;
    background: #3b7ba2;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.resume-upload input[type="file"]::file-selector-button:hover {
    background-color: #1d5b82;
    transform: scale(1.03);
}

/* Submit Button */
.submit-btn {
    width: 30%;
    padding: 5px;
    background: linear-gradient(to right, #3b7ba2, #33b5da);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.submit-btn:hover {
    background: #3b7ba2;
    transform: scale(1.03);

}

.success-message {
    display: none;
    text-align: center;
    font-size: 1.4rem;
    color: #43d787;
    margin-top: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.error-message {
    display: none;
    color: red; 
    text-align: center; 
    margin-top: 10px; 
    font-weight: bold; 
    font-size: 1rem; 
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
.careers-container {
    padding: 20px;
}

.form-group input,
.form-group select {
    font-size: 0.9rem;
}

.submit-btn {
    font-size: 1rem;
    width:50%;
}
}

@media(max-width: 850px){
    .careers-container {
        margin: 20px;
    }
}

/*-------------------------------------------------------------
                    Career Page End   
---------------------------------------------------------------*/


/*---------------------------------------------------------------
                    Global Section 
----------------------------------------------------------------*/

/*--------------------------------
        Global Navbar 
--------------------------------*/
    .navbar {
        background-color: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(180, 215, 255, 0.832);
    }
    .navbar .navbar-brand img {
        height: 40px;
        margin-left: 25px;
        @media(max-width:550px) {
           
        }
    }
    .navbar.scrolled {
        background-color: white !important;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        font-size: 18px;
        margin: 10px 0px;
        color:#011c31;
        transition: all 0.5s ease;
    }

    .navbar.scrolled .nav-link, .toggle-icon {
        color: black !important;
    }

    .nav-item:hover {
        transform: translateX(-5px);
    }
    .nav-item .active {
        padding: 3px;
        color:#0b3952;
        background-color: #ffffff;
        box-shadow: 0px 2px 0px #254dab69;
    }

    .navbar-toggler {
        border-color: black;
    }
    .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' height='30' width='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .navbar-nav {
        margin-left: auto;
    }

    .btn-getstarted {
        color: white; 
        background-color: rgb(2, 5, 38); 
        border-radius: 5px;
        padding: 10px 20px; 
    }

    .btn-getstarted:hover {
        background-color: yellow; 
        color: rgb(2, 5, 38);
    }



/*--------------------------------
        Global Banner
--------------------------------*/
    .global-banner {
        width: 100%;
        height: 400px;
        position: relative;
        padding: 80px 0 60px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(./assets/img/banner3.jpeg) left center no-repeat;
        background-size: cover;

        @media (max-width: 500px){
            height: 400px;
        }
    }

    
    .global-banner-content {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease, transform 1s ease; 
    }

    .global-banner-content.visible {
        opacity: 1;
        transform: translateY(0);
    }


    .global-banner img{
        height: 90px;
        padding-top: 20px;
        @media (max-width: 500px){
            height: 60px;
        }
    }

    .global-banner h3{
        font-size: 46px;
        color:rgb(255, 255, 255);
        font-weight: bold;
        padding-top: 20px;
        @media(max-width:500px){
            font-size: 38px;
        }
    }

    .global-banner p{
        font-size: 16px;
        color:rgba(255, 255, 255, 0.668);
        font-weight: bold;
        padding-top: 20px;
        @media(max-width:500px){
            font-size: 14px;
        }
    }

    

  /*----------------------------
  # Global Footer
 -----------------------------*/
  .footer {
    color: var(--default-color);
    padding-left: 15px;
    background-color:   #242735;/* #36454F;*/
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
    box-shadow: 0 -4px 10px rgba(93, 165, 246, 0.75);
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: white;
    background-color: #032a616d;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    background-color: rgba(9, 119, 202, 0.43);
  }
  
  .footer img {
    height:50px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }

  .footer h4 {
    color: rgb(235, 255, 255);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: white;
  }
  
  .footer .footer-links ul li {
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
    color: white;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }
  
  .footer .footer-about a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
  }
  
  .footer .footer-contact p {
    font-size: small;
    margin-bottom: 5px;
    color: white;
  }
  .footer .footer-contact p a{
    font-size: small;
    margin-bottom: 5px;
    color: white;
  }
  
  .footer .copyright {
    padding-top: 25px;
    padding-bottom: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
    color: white;
  }
  
  .footer .credits {
    margin-top: 6px;
    font-size: 13px;
    color: white;
  }
  
  /*----------------------------
  # Scroll Top Button
 ------------------------------*/
 #scroll-top {
    display: none; 
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: larger;
    border: none;
    border-radius: 25%;
    padding: 7px 12px;
    background-color: #44718c;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

#scroll-top i {
    font-size: 20px;
}

#scroll-top:hover {
    opacity: 0.8;
}


  
  /*----------------------------------
  # Global Page Titles & Breadcrumbs
  ----------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
  }
  
  .page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
  }
  
  .page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
  }
  
  .page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .page-title nav ol li+li {
    padding-left: 10px;
  }
  
  .page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  /*------------------------------------
  # Global Sections
 -------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 98px;
    overflow: clip;
    
  }

  .section {
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    }

  .section.visible {
    transform: translateY(0);
    opacity: 1;
}

.small-section {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
}
.small-section.visible {
    transform: translateY(0);
    opacity: 1;
}
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 56px;
    }
  }
  
  /*--------------------------------
  # Global Section Titles
 ---------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
/*    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);*/
  }
  
  .section-title h2 .description-title {
    color: var(--accent-color);
  }
  
  .section-title p {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
  }
  
  .section-title p .description-title {
    color: var(--accent-color);
  }

  .section-title hr {
    width: 0; 
    opacity: 0;
    margin: 0 auto;
    border: 2px solid #4d6d9af3;
    border-radius: 10px;
    transition: width 1s ease, opacity 1s ease;     
}
.section-title hr.open {
    width: 8%; 
    opacity: 1;
}

.second-tile:hover hr,
.section-title p:hover + hr {
    width: 20%;
}
  

@media(max-width:550px){
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 26px;
    }
    .section-title hr.open {
        width: 20%;
    }
    .second-tile:hover hr,
    .section-title p:hover + hr {
        width: 40%; 
    }
    
}
  

  


  