@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: 29px;
  font-weight: 400;
  text-align: justify;
  color: #3c3c3c;
  margin-left: 1px;
}

.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%);
}
h1 {
  font-family: sans-serif;
}

.olcards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.olcards {
  list-style: none;
  counter-reset: cardCount;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 1rem;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}
.olcards li {
  counter-increment: cardCount;
  display: flex;
  color: white;
  --labelOffset: 1rem;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
}

.olcards li::before {
  content: counter(cardCount, decimal-leading-zero);
  background: white;
  color: var(--cardColor);
  font-size: 2em;
  font-weight: 700;
  transform: translateY(calc(-1 * var(--labelOffset)));
  margin-right: calc(-1 * var(--labelOffset));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 0.5em;
}

.olcards li .content {
  background-color: var(--cardColor);
  --inlinePadding: 1em;
  --boxPadding: 0.5em;
  display: grid;
  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
    var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
  );
  position: relative;
  width: 100%; 
  max-width: 600px; 
  text-align: start;
}
.olcards li .content::before {
  content: "";
  position: absolute;
  width: var(--labelOffset);
  height: var(--labelOffset);
  background: var(--cardColor);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: brightness(0.75);
}
.olcards li .content::after {
  content: "";
  position: absolute;
  height: var(--cardsGap);
  width: var(--cardsGap);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
  left: 0;
  top: 100%;
}
.olcards li .icon {
  grid-area: icon;
  align-self: center;
  font-size: 2em;
}
.olcards li .content .title {
  font-size: 1.25em;
  text-align: start;
  font-family: "Montserrat", sans-serif;
  /* font-weight: 700; */
}
.olcards li .content .text {
  grid-area: text;
  text-align: start;
  font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin: 0; /* Ensure no margin is causing misalignment */
  padding: 0; /* Ensure no padding is causing misalignment */
  line-height: 1.4;

}
@media (max-width: 768px) {
  .olcards {
    flex-direction: column; /* Stack cards on smaller screens */
  }
  
  .olcards li {
    margin-top: 1rem; /* Adjust margin for smaller screens */
  }

  .olcards li .content {
    padding: 1em; /* Adjust padding for smaller screens */
  }

  .olcards li::before {
    font-size: 1.5em; /* Adjust font size for numbering */
  }

  .olcards li .content .title {
    font-size: 1.1em; /* Adjust title font size */
  }

  .olcards li .content .text {
    font-size: 0.9em; /* Adjust text font size */
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../../Montserrat-Italic-VariableFont_wght.ttf");
  src: url("../../Montserrat-VariableFont_wght.ttf");
  font-weight: normal;
  font-style: normal;
}

.factory-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(197, 227, 138, 0.05);
  padding: 32px;
}

.underline-container {
  border-bottom: 1px solid black;
  padding: 2px;
  max-width: 100%; /* Ensure full-width for containers */
}

.highlight {
  color: #007bff;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.firsthead {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
  margin-top: 100px;
  color: #000;
  margin-bottom: 10px;
}

.navbar-brand img {
  height: 48px;
}

.secondhead {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  color: #3d3d3d;
  margin-bottom: 2px;
  margin-top: 4px;
}

.headings {
  font-family: Roboto,"Helvetica Neue","Arial Nova","Nimbus Sans",Arial,sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-left: 32px;
  margin-top: 20px;
  padding-left: 2%;
  margin: 0;
}

.display-1 {
  font-size: 28px !important;
  font-weight: 600;
  color: #000;
  margin-top: 90px;
  margin-bottom: 20px;
  margin-right: 100px;
}

.para-1 {
  font-family: "Poppins", sans-serif;
  color: #4e4b4b;
  font-size: 16px;
  line-height: 44px;
  text-align: justify;
  margin: 0 auto;
}

.display-2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  color: #000;
  margin: 0 auto;
  margin-bottom: 20px;
}

.fact-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.d-block {
  width: 100%;
  height: auto;
  margin-top: 300px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.carousel-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 10px;
  /* margin-bottom: -100px; */
}

.carousel-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #7b7b7b;
}
.carousel-item {
  /* Ensure carousel items use the full width */
  width: 100%;
}

.carousel-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 150px;
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 300px;
  position: relative;
  top: -30px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 350px; /* Set a fixed height for the image */
  object-fit: cover; /* Ensure the image covers the area without distortion */
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  background-color: #f9f9f9;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  min-height: 60px;
}

.card-text {
  font-size: 16px;
  color: #555;
}

@media (max-width: 1200px) {
  .container-fluid {
    height: auto;
    padding: 20px;
  }
  .firsthead,
  .display-1 {
    font-size: 32px;
  }
  .para-1 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .container-fluid {
    padding: 20px;
  }
  .text1 {
    font-size: 32px;
  }
  .text2 {
    font-size: 16px;
  }
  .firsthead,
  .display-1 {
    font-size: 24px;
  }
  .carousel-heading {
    font-size: 18px;
  }
  .carousel-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    flex-direction: column;
    align-items: center;
  }
  .fact-image,
  .d-block {
    height: auto;
  }
  .text1 {
    font-size: 24px;
  }
  .text2 {
    font-size: 14px;
  }
  .video-head {
    font-size: 40px;
  }
  .display-1 {
    font-size: 20px !important;
  }
  .para-1 {
    font-size: 14px;
  }
  .carousel-heading,
  .carousel-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .text1 {
    font-size: 20px;
    margin-top: 16px;
  }
  .text2 {
    font-size: 12px;
  }
  .video-head {
    font-size: 32px;
  }
  .display-1 {
    font-size: 16px !important;
  }
  .para-1 {
    font-size: 12px;
  }
  .carousel-heading,
  .carousel-text {
    font-size: 14px;
  }
}
.content-container {
  background: white;
  padding: 5%;
  margin-top: -20px;
}
.highlightable {
  margin-bottom: 1px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.highlight-item img {
  width: 71px;
  height: 70px;
  margin-right: 10px;
}
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);
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
}

.content {
    display: none;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.content.active {
    display: flex;
    gap: 2rem;
    flex-direction: row;
}

.content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.content img:hover {
    transform: scale(1.05);
}

.left-side,
.right-side {
    flex: 1;
}

.right-side h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #051a30;
}

.right-side p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

ul.list {
    padding-left: 20px;
    list-style-type: disc;
}

ul.list li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

ul.list li b {
    color: #051a30;
}

/* Add responsive behavior */
@media (max-width: 768px) {
    .content.active {
        flex-direction: column;
        text-align: center;
    }

    .tabs-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab {
        width: 100%;
        max-width: 300px;
    }
}


/* 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: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
  text-align: justify;
  color: #3c3c3c;
  margin-left: 1px;
}

.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 .content {
  position: relative;
  z-index: 20; 
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 0; 
  color: black; 
  transition: opacity 0.5s ease, color 0.5s ease; 
}

.custom-container .item:hover .content {
  opacity: 1; 
  color: black; 
}
.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; 
}

.custom-container .content {
  position: relative;
  z-index: 20;
  display: flex;
  top: -50px;
  flex-direction: column; 
  align-items: flex-start; 
  width: 100%;
  height: 100%;
  opacity: 0; 
  color: black;
  transition: opacity 0.5s ease, color 0.5s ease;
}

.custom-container .item:hover .content {
  opacity: 1; 
}

.infographic-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px; 
  position: relative;
  width: 100%; /* Changed to 100% for responsiveness */
  max-width: 1360px; /* Keep a max-width for larger screens */
  height: 100px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); 
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.number-container {
  flex-shrink: 0;
  width: 140px; /* Fixed width for the number container */
  height: 100px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.number-circle {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 30px; 
  font-weight: bold;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); 
  transition: box-shadow 0.3s ease; 
}

.infographic-content {
  flex: 1;
  padding-left: 50px; /* Adjust padding for larger screens */
}

.infographic-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px; 
  color: #333;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px; 
}

.infographic-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px; 
  color: #777;
  line-height: 1.1; 
}

/* Mobile Styles */
@media (max-width: 768px) {
  .infographic-item {
    flex-direction: column; 
    height: auto; 
    align-items: flex-start; 
    padding: 20px; 
  }

  .number-container {
    width: 100%; 
    height: auto; 
  }

  .number-circle {
    width: 50px; 
    height: 50px; 
    font-size: 20px; 
  }

  .infographic-content {
    padding-left: 0; 
    padding-top: 10px; 
    text-align: center; 
  }

  .infographic-content h3 {
    font-size: 18px; 
  }

  .infographic-content p {
    font-size: 16px; 
  }
}

.contain {
  width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  height: 300px; /* Default height for desktop */
}

.slider-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 200px;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1000;
}

.slider input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-controls label {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin-bottom: -55px;
  cursor: pointer;
  background-color: #c2c2c2;
  transition: background-color 0.2s linear;
}

#btn-1:checked ~ .slider-controls label[for="btn-1"],
#btn-2:checked ~ .slider-controls label[for="btn-2"],
#btn-3:checked ~ .slider-controls label[for="btn-3"] {
  background-color: #00569e;
}

.slides {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#btn-1:checked ~ .slides .slide:nth-child(1),
#btn-2:checked ~ .slides .slide:nth-child(2),
#btn-3:checked ~ .slides .slide:nth-child(3) {
  transform: translateX(0);
  opacity: 1;
}

#btn-1:not(:checked) ~ .slides .slide:nth-child(1),
#btn-2:not(:checked) ~ .slides .slide:nth-child(2),
#btn-3:not(:checked) ~ .slides .slide:nth-child(3) {
  animation-name: swap-out;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

@keyframes swap-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.slide-content {
  flex: 1;
  padding: 10px; /* Add some padding for better spacing */
}

.slide-image {
  flex: 1;
  display: flex;
  align-items: center;
}

.slide-image img {
  width: 100%;
  height: auto; 
  max-height: 350px; 
}

.slide-link {
  padding: 10px 25px;
  color: #00569e;
  background: rgba(199, 220, 238, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid #00569e;
  border-radius: 29px;
  font-family: "Switzer" !important;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.slide-link:hover {
  background-color: #00569e;
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .slider {
    height: 600px; 
  }

  .slide {
    flex-direction: column;
    padding: 10px; 
  }

  .slide-content {
    width: 100%; 
    text-align: center; 
  }

  .slide-image {
    width: 100%; 
    display: flex;
    justify-content: center; 
    margin-bottom: 10px; 
  }

  .slide-image img {
    max-height: 200px; 
    height: auto; 
  }

  .slider-controls {
    bottom: 5px; 
    width: 150px;
  }
}


/* General styling */
.icon-cards-section {
  text-align: center;
  padding: 50px 20px;
}

/* Cards container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Each card styling */
.card {
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  width: 320px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding-top: 50px; 
  overflow: visible; 
}

/* Icon container */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;  
  background-color: #ccc;  
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: visible;
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start;
}

/* Image inside the icon */
.icon img {
  width: 60px;  
  height: 60px; 
  object-fit: contain;  
}

/* Card content */
.card-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-align: justify;
  flex-grow: 1;
  margin: 10px 0 0;
}
.card-content {
  flex-grow: 1; 
}

.card-label {
  font-size: 14px;
  font-weight: bold;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 10px;
}

/* Label colors */
.inspiration-label {
  background-color: #8884c5;
}

.management-label {
  background-color: #a47e3c;
}

.meeting-label {
  background-color: #c6c174;
}

.marketing-label {
  background-color: #b45656;
}
.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}
.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;
}