@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.cdnfonts.com/css/switzer");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");


body,
html {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

.text1 {
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 50px;
  gap: 10px;
}

.text2 {
  font-family: "Poppins", sans-serif;
  font-size: 16px; 
  line-height: 24px; 
  font-weight: 400;
  text-align: justify;
  color: #ffffff;
  max-width: 60%; 
}
.teal{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 33px;
    font-weight: 400;
    text-align: center;
    color: #3c3c3c;
}
.tex1{
  font-family: "Raleway", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #14274a;
  margin-top: 0px;
  gap: 10px;
  text-align: left;
}
.tips{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 33px;
  font-weight: 400;
  text-align: justify;
  color: #3c3c3c;
}

.slim-edges-underline {
  font-family: Raleway, sans-serif;
  color: #00569E;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.slim-edges-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px; 
  width: 70%; 
  height: 4px; 
  background: linear-gradient(to right, transparent 0%, #00569E 50%, transparent 100%);
}
footer {
  color: #333;
  padding-top: 20px;
}
footer {
  color: #333;
  padding-top: 20px;
  background-image: url('../images/footer-pattern-triangle.png'); 
  background-size: contain; 
  background-repeat: no-repeat; 
  background-position: center; 

}

footer .social-media {
  background-color: #21d192;
  color: white;
}

footer .social-media .me-5 {
  margin-right: 1.5rem;
}

footer .social-media a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

footer h6 {
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #14274a;
  margin-bottom: 15px;
}

/* footer hr {
width: 60px;
background-color: #7c4dff;
height: 2px;
border: none;
margin: 0 auto;
} */
.head1 {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
}

footer a {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #7c4dff;
  text-decoration: none;
}

footer .contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

footer .copyright {
  background-color: rgba(203, 201, 201, 0.2);
  color: #333;
  padding: 1px;
  font-size: 0.9rem;
}

.full-screen-video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* Full height for the video container */
}

.full-screen-video-container {
  position: relative;
  width: 100%;
  height: 100%; 
}

.background-image {
  position: absolute; 
  top: 50%; 
  left: 50%;
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transform: translate(-50%, -50%);
  z-index: 0; 
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); 
  color: white;
  padding: 20px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start; 
  z-index: 1; 
  text-align: start; 
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
  .background-image {
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }

  .text-overlay {
      padding: 10px; 
  }
}


.numbered-list {
    list-style: none; 
    counter-reset: list-counter; 
    padding: 0;
    display: flex;
    justify-content: center; 
    gap: 2rem; 
}

.numbered-list li {
    counter-increment: list-counter; 
    position: relative;
    padding: 2rem;
    width: 30%;
    text-align: center;
    background-color: #f2f2f2;
    border-radius: 8px;
}

.numbered-list li::before {
    content: counter(list-counter); /* Display the counter value */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: #3498db; 
    color: white;
    border-radius: 50%; 
    position: absolute;
    top: -1.5rem; 
    left: 50%; 
    transform: translateX(-50%);
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
}

.numbered-list li h3 {
    margin-top: 2rem; 
    font-size: 1.3rem;
    font-family: "Montserrat", sans-serif;
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 768px) {
    .numbered-list {
        flex-direction: column; 
        gap: 1.5rem;
    }

    .numbered-list li {
        width: 100%; 
    }

    .numbered-list li::before {
        left: 50%;
        transform: translateX(-50%);
    }
}





      /* Tabs and Content */
.expertise-section {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tab-container {
    position: relative;
}

.tab {
    padding: 12px 20px;
    border: 1px solid transparent; 
    background: linear-gradient(145deg, #ffffff, #f1f1f1); 
    cursor: pointer;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
    position: relative;
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.tab:hover {
    background: linear-gradient(145deg, #f1f1f1, #e0e0e0); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.tab.active {
    background: linear-gradient(145deg, #007bff, #0056b3); 
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    font-weight: bold; 
}

.tab, .tab.active {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* Typography */
body {
    font-family: 'Montserrat', sans-serif;
    color: #444444; /* Nero */
    font-size: 0.875em;
    line-height: 1.5;
}

/* Colors */
:root {
    --cadet: #4f6d7a;
    --maximum-blue: #5ea5b8;
    --platinum: #eaeaea;
    --nero: #444444;
    --dl-gradient-right: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 20%, rgba(255, 255, 255, 0) 0%);
}

/* List Styles */
dl {
    counter-reset: count;
    background: var(--dl-gradient-right);
    padding-left: 4vw;
    padding-right: 4vw;
    margin: 0;
}

dl + dl {
    counter-reset: count 2;
}

dt {
    counter-increment: count;
    color: var(--cadet);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em; /* Adjusted for better readability */
    text-transform: uppercase;
}

dt::before {
    content: counter(count, decimal-leading-zero) ".";
    font-family: 'Abril Fatface', cursive;
    color: var(--maximum-blue);
    margin-left: -2em; /* Adjusted for better alignment */
    padding-right: 12px;
}

dd {
    margin-left: 2em; /* Adjusted for better alignment */
    margin-bottom: 2vh;
}

/* Container Styles */
.container {
    margin-bottom: 2rem; /* Space between containers */
}

/* Responsive Grid */
.dl-blurbs {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
    gap: 2vw;
}

.column {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .dl-blurbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .column:nth-child(1) {
        grid-column: 1 / 2;
    }

    .column:nth-child(2) {
        grid-column: 2 / 3;
    }
}
.button1 {
    width: 250px;
    height: 60px;
    color: #00569e;
    border: 1px solid #00569e;
    border-radius: 5px;
    font-family: "Switzer" !important;
    font-weight: 500;
    size: 14px;
    text-align: center;
  }
  .btn-mdl1:hover {
    background-color: #00569e;
    color: white;
  }
  .text11 {
    font-family: "Raleway", sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #14274a;
    margin-top: 50px;
    gap: 10px;
    text-align: left;
    margin-left: 10px;
  }
  
  .text12 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    text-align: justify;
    color: #3c3c3c;
    margin-left: 10px;
  }
  .button {
    padding: 10px 25px;
    color: #00569e;
    text-align: center;
    border: 1px solid #00569e;
    border-radius: 29px;
    font-family: "Switzer" !important;
    font-weight: 500;
    size: 14px;
  }
  .btn-mdl:hover {
    background-color: #00569e;
    color: white;
  }
 .full-width {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust spacing between items as needed */
}

.full-width .alternating-colors {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none; /* Remove bullet points */
    width: 100%;
}

.full-width .alternating-colors li {
    flex: 1 1 calc(33.333% - 20px); /* 3 columns with space for gaps */
    box-sizing: border-box;
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px; /* Increased spacing between rows */
    counter-increment: list-counter;
    border: 1px solid transparent; /* For proper alignment and spacing */
}

.full-width .alternating-colors li:before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f7fa;
    color: #00796b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.full-width .alternating-colors li:nth-child(odd):before {
    background: #b3e5fc;
    color: #01579b;
}

.full-width .alternating-colors li:nth-child(even):before {
    background: #c8e6c9;
    color: #1b5e20;
}

@media (max-width: 768px) {
    .full-width .alternating-colors li {
        flex: 1 1 calc(50% - 20px); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .full-width .alternating-colors li {
        flex: 1 1 100%; /* 1 column on very small screens */
    }
}


.modern-header {
    margin-bottom: 20px;
}

.modern-heading {
    font-family: "Raleway", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.modern-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #00796b;
    position: absolute;
    left: 0;
    bottom: 0;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.modern-list li {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: #555;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.modern-list li::before {
    content: '•';
    font-size: 24px;
    color: #00796b;
    position: absolute;
    left: 0;
    top: 0;
}

.modern-text {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modern-subheading {
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.modern-subheading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #00796b;
    position: absolute;
    left: 0;
    bottom: 0;
}

@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap');
:root {
  --dur: all 550ms ease-in-out; 
  --dur-a: all 650ms ease-in-out;
  --dur-b: all 750ms ease-in-out;
}
.custom-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  /* background: linear-gradient(135deg, #8e01e8 0%, #1101e8 100%); */
}

.custom-container .item {
  background: #0234FF;
  height: 500px;
  position: relative;
  border-radius: 15px;
  padding: 30px;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
}

.custom-container .card {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  transition: var(--dur);
  clip-path: circle(100.0% at 50% 50%);
}

.custom-container .card img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  height: 100%;
  width: 400px;
  max-width: 9999px;
  overflow: hidden;
  border-radius: 15px;
  transition: var(--dur);
  clip-path: circle(100.0% at 50% 50%);
}

.custom-container .item:hover .card img {
  clip-path: circle(0.0% at 50% 50%);
}

.custom-container .circle {
  background: #1101E8;
  max-width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: var(--dur-a);
  clip-path: circle(100.0% at 50% 50%);
}

.custom-container .circle2 {
  background: #8E01E8;
  transition: var(--dur-b);
  clip-path: circle(100.0% at 50% 50%);
}

.custom-container .item:hover .card .circle {
  clip-path: circle(0.0% at 75% 60%);
}

.custom-container .item:hover .card .circle2 {
  clip-path: circle(0.0% at 35% 20%);
}

.custom-container img {
  max-width: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.custom-container .read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000; 
  color: #fff; 
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
  margin-top: 30px;
}

.custom-container .read-more-btn:hover {
  background-color: #fff; 
  color: #000; 
  border: 1px solid #000; 
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: -100%; 
  margin-top: -1px; 
}

.navbar-nav .nav-item:hover .fas {
  color: #007bff; 
}

.dropdown-menu .dropdown-item .fas {
  color: #555; 
  transition: color 0.3s ease-in-out;
}