@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:wght@100..900&display=swap');
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.font-Poppins {
    font-family: 'Poppins', sans-serif;
}

.font-Inter {
    font-family: 'Inter', sans-serif;
}
.big-text {
  font-size: 4rem;  /* or adjust as needed */
  font-weight: 800;
}

.small-text {
  font-size: 3rem;  /* smaller than "About" */
  font-weight: 600;
  color: #555; /* optional styling */
}

.hero-section {
    font-weight: 800;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #F9F7F7;
    /* Updated background color */
}

.hero-content {
    animation: fadeInUp 2s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 70%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Updated overlay color with #112D4E */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    color: #F9F7F7;
    /* Updated text color to #F9F7F7 */
}

.hero-content h1 {
    font-size: clamp(80%, 10vw, 80px);
    font-weight: 800;
    background: linear-gradient(90deg, #bde0fe 15%, #d1c4e9 35%, #a3e4d7 60%, #8ccae7 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    font-family: "Roboto Slab", serif;
}

.hero-content p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    /* Updated text color */
}

.hero-content .btn {
    background-color: #3F72AF;
    padding: 14px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 200px;
    margin: 30px auto;
    display: block;
}

.hero-content .btn:hover {
    background-color: #DBE2EF;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
        white-space: normal;
        height: 100px;
    }

    .hero-content p {
        font-size: 0.95rem;
        height: 100px;
    }

    .hero-content .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px 16px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        height: 100px;
    }

    .hero-content {
        padding: 10px;
    }
}

.video-section {
    font-weight: 800;
    height: 70vh;
    /* Changed height to 70vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #F9F7F7;
    /* Updated background color */
}

.video-content {
    animation: fadeInUp 2s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    object-fit: cover;
    z-index: 0;
    opacity: 70%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgba(0, 0, 0, 0.6);
    /* Updated overlay color with #112D4E */
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    color: #F9F7F7;
}

.video-content h1 {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(90deg, #bde0fe 15%, #d1c4e9 35%, #a3e4d7 60%, #8ccae7 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    overflow: hidden;
    font-family: "Roboto Slab", serif;
}

.video-content p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    /* Updated text color */
}

.video-content .btn {
    background-color: #3F72AF;
    padding: 14px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 200px;
    margin: 30px auto;
    display: block;
}

.video-content .btn:hover {
    background-color: #DBE2EF;

}

@media (max-width: 768px) {
    .video-content h1 {
        font-size: 1.8rem;
        white-space: normal;
        height: 100px;
    }

    .video-content p {
        font-size: 0.95rem;
        height: 100px;
    }

    .video-content .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px 16px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .video-content h1 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 0.9rem;
        height: 100px;
    }

    .video-content {
        padding: 10px;
    }
}
.equal-col video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);

}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec01 {
    background-color: #F9F7F7;
    /* Updated background color */
}

.sec01 h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #0F4C75;
    /* Updated heading color */
    line-height: 1.5;
}

.sec01 p {
    font-family: 'Inter', sans-serif;
}

.sec01 i {
    padding: 10px;
    border-radius: 50%;
    color: #0F4C75;
    /* Updated icon color */
}

.sect1img {
    padding-right: 100px;
    padding-top: 20px;
}

.glass-card {
    color: #0F4C75;
    /* Updated text color */
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    width: 100%;
    height: 100%;
}

.btn {
    background-color: #3F72AF;
    /* Updated button color */
    color: #F9F7F7;
    padding: 5px 8px;
    font-size: 16px;
    font-weight: 700;
}

.fa-arrow-right {
    font-size: 16px;
}

.sec02 {
    background-color: #DBE2EF;
    /* Updated background color */
    padding-top: 30px;
}

.sec02 h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #0F4C75;
    /* Updated heading color */
    padding-bottom: 50px;
    line-height: 1.5;
    text-align: center;
}

.sec02 h6 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #0F4C75;
    /* Updated text color */
}


.sec03 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #333333;
    margin-bottom: 30px;
}

.sec03 {
    background-color: #F9F7F7;
}

.sec03 .text-center h2 {
    color: #0F4C75;
}

.sec03 .time-line:before {
    background-color: #DBE2EF;
}

.sec03 .min-title {
    color: #0F4C75;
}

.sec03 p {
    color: #5E5852;
}

.sec03 .line-num {
    background-color: #3F72AF;
}


.sec04 {
    background-color: #F9F7F7;
    text-align: center;
    padding: 50px;
}

.sec04 h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #0F4C75;
}

.sec04 .card {
    color: #112D4E;
    font-family: 'Poppins', sans-serif;
    padding: 30px;
    text-align: left;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.sec04 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sec04 .card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 2rem;
    margin-top: 2rem;
    color: #112D4E;
}

.sec04 .card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #6B7280;
}

.sec05 {
    padding: 60px 0;
    background-color: #DBE2EF;
    text-align: center;
}

.sec05 .section-head {
    margin-bottom: 50px;
}

.sec05 .section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #0F4C75;
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 2.2em;
}

.sec05 .section-head p {
    font-family: 'Inter', sans-serif;
    color: #778899;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 0;
}

.sec05 .card {
    border: 1px solid #D8BFD8;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #FFFFFF;
}

.sec05 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.sec05 .card-body {
    padding: 30px;
    text-align: left;
}

.sec05 .icon-lg {
    margin-bottom: 25px;
}

.sec05 .icon-lg a {
    color: #0F4C75;
    transition: color 0.3s ease-in-out;
}

.sec05 .icon-lg a:hover {
    color: #112D4E;
}

.sec05 .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #6A5ACD;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.sec05 .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.sec05 .card-title a:hover {
    color: #0F4C75;
}

.sec05 .card-text {
    font-family: 'Inter', sans-serif;
    color: #778899;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 0;
}

.sec06 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sec06 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #333333;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}


.sec06 {
    background: #F9F7F7;
}

.sec06 h2 {
    color: #0F4C75;
}

.sec06 .counter-style-1 i.icon {
    color: #3F72AF;
}

.sec06 .counter-style-1 .counter {
    color: #555555;
}

.sec06 .counter-style-1 .counter-text {
    color: #777777;
}

.sec06 .client-logo-carousel .item .br-col-b1 {
    border-color: #DBE2EF;
}
/* From Uiverse.io by csemszepp */
.indexm .modal-content {
  width: 100%;
  height: 100%;
  color: #000000; /* Black text color for all elements for readability */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  padding: 20px;
  background-color: #FFFFFF; /* Very light blue/cyan background */
}

.indexm .btn-primary {
  font-family: 'Poppins', sans-serif;
  background-color: #1A5276; /* Deep blue background */
  border-color: #21618C; /* Slightly darker blue border */
  color: #FFFFFF; /* White text for contrast */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.indexm .btn-primary:hover {
  background-color: #2874A6; /* Lighter shade of blue for hover effect */
  border-color: #2E86C1; /* Slightly lighter blue border */
  color: #FFFFFF; /* Maintain white text */
}

.indexm .form-control {
  font-family: 'Poppins', sans-serif;
  background-color: #E0F2F7; /* White background for form fields */
  border-bottom: 1px solid #0099ff; /* Medium blue border */
  color: #000000; /* Black text color */
  padding: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.indexm .form-control::placeholder {
  color: #34495E; /* Dark gray placeholder text for better contrast */
}

.indexm .form-control:focus {
  background-color: #D6EAF8; /* Very light blue on focus */
  border-color: #3498DB; 
}

.indexm label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #000000; /* Black text for labels */
}

.indexm .modal-body .row {
  align-items: center;
  margin-bottom: 1rem;
}

.indexm .modal-img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px; /* Space between image and content */
}

.indexm .modal-header,
.indexm .modal-footer {
  border: none; /* Remove the bottom border for both header and footer */
}

.indexm .close {
  font-size: 2rem; /* Increase size of the close button */
  color: #1A5276; /* Deep blue for the close button */
  opacity: 1; /* Ensure it's visible */
}

.indexm .modal-header {
  font-family: 'Poppins', sans-serif;
  font-size: 8rem; /* This might be too large; consider adjusting if it's for a title */
  padding-top: 10px; /* Add some space at the top for better alignment */
  padding-right: 10px; /* Add some space on the right side for close button */
  color: #000000; /* Black text for header */
}

@media (max-width: 576px) {
  .indexm .modal-body .col-md-6 {
    margin-bottom: 1rem;
  }
}
