 /* General Body Styling */
        body {
            margin: 0;
            padding: 0;
            font-family: Montserrat, sans-serif;
            background-color: black;
        }

        /* Main Container */
        
        .main {
            background-color: #1e1e1e;
            padding: 10px 0;
            margin-top: -60px;
        }



        /* Background Sections */
        .board-of-directors,
        .core-values-section,
        .our-impact {
            background-image: url('../images/board-of-directors/crown.png');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 3% 0;
            /* min-height: 100vh; */
            margin-bottom: 20px;
        }

        .board-of-directors,
        .our-impact {
            display: flex;
            align-items: center;
        }

        /* Board of Directors Section */
        .board-of-directors h1 {
            color: #0C72BA;
            font-weight: 900;
            font-size: 52px;
        }

        .board-of-directors p {
            text-align: justify;
            /* font-weight: bold; */
            font-size: 22px;
            line-height: 1.6;
        }

        /* Core Values Section */
        .core-values-section {
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .heading-over-images {
            color: #0c72ba;
            margin-bottom: 10px;
            font-weight: 800;
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .core-value-box {
            width:280px;
            height: 280px;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
            box-sizing: border-box;
            position: relative;
        }

        .core-value-box.bg-1 {
            background-image: url('../images/board-of-directors/1.png');
        }

        .core-value-box.bg-2 {
            background-image: url('../images/board-of-directors/2.png');
        }

        .core-value-box.bg-3 {
            background-image: url('../images/board-of-directors/3.png');
        }

        .core-value-box.bg-4 {
            background-image: url('../images/board-of-directors/4.png');
        }

        .core-value-text {
            font-size: 12px;
            font-weight: 400;
            line-height: 118%;
            color: #ffffff;
            padding: 0 20px;
            text-align: justify;
        }

        .core-value-text.margin-top {
            margin-top: 100px;
        }

        .core-value-title {
            color: #0c72ba;
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        /* Our Impact Section */
        .our-impact h2 {
            color: #0C72BA;
            font-weight: 800;
            font-size: 28px;
           
        }
        .our-impact p {
            font-weight: 400;
            font-size: 21px;
            text-align: justify;
        }

        .signature-block {
            text-align: end;
            padding: 10px;
        }

        .signature-block p {
            padding: 0 10px;
            font-weight: 500;
        }

        .signature-block span {
            display: block;
        }

        .signature-block .bold {
            font-weight: 700;
        }

        .signature-block .highlight {
            color: #0C72BA;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .board-of-directors h1 {
                font-size: 2rem;
            }

            .board-of-directors p {
                font-size: 1rem;
                text-align: justify;
            }

            .heading-over-images {
                font-size: 37px;
                text-align: center;
                margin-left: -10%;

            }

            .core-value-box {
                padding: 30px 30px;
            }

            .core-value-text {
                width: 100%;
                font-size: 14px;
                text-align: justify;
            }

            .our-impact h2,
            .our-impact p {
                width: auto;
                font-size: 18px;
            }

            .our-impact p {
                font-size: 12px;
                text-align: justify;
            }

            .footer .row>div {
                margin-bottom: 10px;
                text-align: center;
            }

            .footer {
                text-align: center;
            }
        }

        /* Footer Styling */
        .footer {
            background-color: #1e1e1e;
            color: white;
            padding: 10px 20px 15px 20px;
            margin-bottom: -40px;
        }

        .footer p {
            margin-bottom: 0;
            font-size: 10px;
            font-weight: 400;
            line-height: 1.4;
        }

        .social-icon {
            margin-right: 8px;
            font-size: 16px;
            color: white;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: #ccc;
        }



        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px;
            background: #000;
            color: #fff;
            position: relative;
        }

        .logo img {
            height: 50px
        }

        /* Center links */
        .nav-links {
            display: flex;
            gap: 10px;
            flex: 1;
            justify-content: center;
            transition: max-height .3s ease;
        }

        .nav-links li {
            list-style: none;
            position: relative;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 8px;
            display: block;
            font-weight: 500;
        }

        .nav-links li:hover>a {
            color: #0af
        }

        .nav-links ul {
            display: none;
            position: absolute;
            top: 35px;
            left: 0;
            background: #111;
            border-radius: 4px;
            padding: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            min-width: 160px;
            z-index: 10;
        }

        .nav-links li:hover>ul {
            display: block
        }

        .nav-links ul li {
            margin-bottom: 6px
        }

        .nav-links ul li:last-child {
            margin-bottom: 0
        }

        .nav-links ul a:hover {
            color: #0af
        }

        /* Right side */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-right button {
            background: none;
            border: none;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-right img.flag {
            width: 18px
        }

        /* Mega-menu */
        .mega-menu {
            position: absolute;
            top: 60px;
            right: 20px;
            background: #111;
            color: #fff;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            display: none;
            width: 90%;
            max-width: 1000px;
            z-index: 1000;
        }

        .mega-menu.show {
            display: block
        }

        .mega-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .mega-col {
            flex: 1 1 150px;
        }

        .mega-col h4 {
            margin-bottom: 8px;
            font-size: 16px;
            border-bottom: 1px solid #333;
            padding-bottom: 4px;
        }

        .mega-col ul {
            list-style: none
        }

        .mega-col li {
            margin-bottom: 6px
        }

        .mega-col a {
            color: #ddd;
            text-decoration: none;
            font-size: 14px;
        }

        .mega-col a:hover {
            color: #0af
        }

        /* Hamburger */
        .hamburger {
            display: none;
            font-size: 22px;
            background: none;
            border: none;
            color: #fff;
        }

        /* MOBILE */
        @media(max-width:992px) {
            .nav-links {
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: #000;
                max-height: 0;
                overflow: hidden;
            }

            .nav-links.show {
                max-height: 500px;
            }

            .nav-links li {
                width: 100%
            }

            .nav-links ul {
                position: static;
                box-shadow: none;
                background: #111;
                margin-left: 10px;
            }

            .mega-menu {
                position: static;
                width: 100%;
                margin-top: 10px;
            }

            .mega-content {
                flex-direction: column;
            }

            .mega-col {
                flex: 1 1 100%
            }

            .hamburger {
                display: block
            }
        }



        
.marqueeajust{
    height: 100% !important;
    width: 100%;
    margin-left: -11%;
}
.marqueeajustright{
    height: 100% !important;
    width: 100%;
        margin-left: 13%;
}
/* marquee section css */
.marquee-wrapper
{
  width: 80%;
  transform: translateY(-10px);
  margin-left: 7.5%;
}
.marquee-text{
    color: white;
}
.marquee-text-container {
 
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-text-track {
  display: flex;
  animation: scroll-loop 20s linear infinite;
}

.marquee-text {
  flex-shrink: 0;
  color: white;
  padding-right: 100px; /* Space between repetitions */
  display: flex;
  align-items: center;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


        /* Submit Button */
        .submit-container {
            padding:  0 50px;

        }

        .btn-submit {
            background: black;
            color: white;
            border: none;
            padding: 12px 1px;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            
        }

        .btn-submit:hover {
            background: linear-gradient(45deg, #4a8bc2, #3076BB);
            transform: translateY(-2px);
        }


         /* responsive for mobile */
   /* Mobile view */

 @media (max-width: 767px) {
  .board-of-directors {
    /* min-height: 80vh; */
    padding: 10% 0;
  }
  .our-impact {
    /* min-height: 50vh; */
    padding: 10% 0;
  }
  
    .content-left {
            padding-right: 5%;
            padding-left: 5%;
            padding-top: 10%;
        }

         .contact-title {
            font-size: 25px !important;
            font-weight: 800;
            color: #3076BB;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 17px !important;
            margin-bottom: 25px;
            font-weight: 400;
            color: #fff;
                    }

        .persona-title {
            font-size: 23px;
            font-weight: 800;
            margin-bottom: 5px;
            color: #3076BB;
            line-height: 1.1;
        }
  .btn-email,
        .btn-chat {
         padding: 10px 15px;
        font-weight: 700;
        font-size: 6px;
           border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
          .form-container {
            height: 375px;
          }
          .form-scrollable {
          height: 180px;
        }
        .form-header {
    padding: 30px 40px 5px 40px;
        }
    .form-subtitle {
        font-size: 17px !important;
    }
    .form-title {
        padding-top: 5px !important;
    color: #0C72BA;
    font-weight: 800;
    font-size: 24px !important;
    margin-bottom: 8px !important;
    }
    .form-section {
        padding-left: 0% !important;
    }
    .text-WVX h1 {
    font-size: 44px;
    }
    .core-values-section {
    padding-top: 20%;
    padding-bottom: 25%;
    padding-left: 7%;
}
.opportunity-cards {
    margin-left: 17% !important;
    gap: 30px !important;
}
.our-impact-heading
{
    padding: 0px 0 50px 0 !important;
    color: #0C72BA;
    font-size: 35px !important;
    font-weight: 800 !important;
}

.services-carousel {
    margin: 0 10%;


}
.Centralized-paragraph {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding-top: 5%;
    padding-bottom: 40px;
}


.set-paragarph {
    font-size: 18px;
    padding-bottom: 10%;
    padding-top: 3%;
}
.services-card {
  padding-top: 20%;
  
}

.graphiora {
    width: 100%;
}
.graphiora-title {
    padding: 48px 0 10px 0;
    font-size: 40px;
}
.graphiora-card-1 {
 gap: 0px;
    margin-left: 0%;
    justify-content: center;
}
.graphiora-card-2 {
    gap: 0px;
    margin-left: 0%;
    margin-top: 0%;
    justify-content: center;
    padding-top: 0% !important;
}
 }

@media (max-width: 968px) and (min-width: 768px) {
    .board-of-directors {
        /* min-height: 70vh; */
        padding: 10% 0;
    }
    .board-of-directors h1 {
        font-size: 50px;
    }
    .col-md-10 {
        width: 100%;
    }
    
    .audit-text{
        width: 100%;
        padding: 5%;
    }
    .Audit h1 {
    color: #0C72BA;
    font-weight: 900;
    font-size: 50px;
  }
  .genai-services-row {
    gap: 8%;
  }
  
  .opportunity-cards {
    gap: 14% !important;
    margin-left: -15% !important;
    justify-content: center !important;
  }
  .WVX-paragraph {
    font-size: 22px;
  }
  
  .content-left {
    padding-right: 4%;
    padding-left: 7%;
    width: 100%;
    padding-top: 5%;
}
 .contact-title {
            font-size: 42px !important;
            font-weight: 800;
            color: #3076BB;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 32px !important;
            margin-bottom: 25px;
            font-weight: 400;
            color: #fff;
                    }

        .persona-title {
            font-size: 35px;
            font-weight: 800;
            margin-bottom: 5px;
            color: #3076BB;
            line-height: 1.1;
        }
        .action-buttons { 
            gap: 5%;
        }
        .btn-email, .btn-chat {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 17px;
        }
        .form-section {
            width: 100%;
            padding-left: 7% !important;
    padding-right: 5% !important;
        }
.form-container {
    height: 50vh;
}

.graphiora {
    width: 100%;
}
.graphiora-title {
    padding: 48px 0 30px 0;
    font-size: 40px;
}
.graphiora-card-1 {
 gap: 0px;
    margin-left: 0%;
}
.graphiora-card-2 {
    gap: 0px;
    margin-left: 0%;
    margin-top: 0%;
    justify-content: center;
    padding-top: 0% !important;
}
  }


@media (max-width: 1280px) and (min-width: 969px) {
   
    .board-of-directors h1 {
        font-size: 50px;
    }
     
    .col-md-10 {
        width: 100% !important;
    }
.justify-content-center {
    justify-content: center !important;
    gap: 20%;
    margin-left: -11%;
}

    
    .audit-text{
        width: 100%;
        padding: 5%;
    }
    .Audit h1 {
    color: #0C72BA;
    font-weight: 900;
    font-size: 50px;
  }
  .genai-services-row {
   gap: 0%;
        padding: 0 8%;
  }
  
  .opportunity-cards {
    gap: 13% !important;
    margin-left: -10% !important;
    justify-content: center !important;
  }
  
  .WVX-paragraph {
    font-size: 22px;
  }
  
  .content-left {
    padding-right: 3%;
    padding-left: 10%;
    width: 100%;
    padding-top: 5%;
}
 .contact-title {
            font-size: 52px !important;
            font-weight: 800;
            color: #3076BB;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 36px !important;
            margin-bottom: 25px;
            font-weight: 400;
            color: #fff;
                    }

        .persona-title {
            font-size: 35px;
            font-weight: 800;
            margin-bottom: 5px;
            color: #3076BB;
            line-height: 1.1;
        }
        .action-buttons { 
            gap: 5%;
        }
        .btn-email, .btn-chat {
   padding: 20px 40px;
        font-weight: 700;
        font-size: 20px;
        }
        .form-section {
            width: 100%;
            padding-left: 7% !important;
    padding-right: 5% !important;
        }
.form-container {
    height: 40vh;
}



.graphiora {
    width: 100%;
}
.graphiora-title {
    padding: 48px 0 30px 0;
    font-size: 40px;
}
.graphiora-card-1 {
    justify-content: center;
    gap: 5%;
    margin-left: 0%;
}
.graphiora-card-2 {
    gap: 5%;
    margin-left: 0%;
    justify-content: center;
    margin-top: 0%;
    padding-top: 0% !important;
}
}
