/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005E83;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 40px;

}


.social-media {
    display: flex;
    gap: 2rem; /* Space between icons */
    margin-right: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-media a img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.social-media a:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    filter: brightness(0.9); /* Darken slightly on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-media {
        gap: 0.8rem; /* Reduce space for smaller screens */
        margin-right: 20px;
    }

    .social-media a {
        width: 25px; /* Reduce icon size for smaller screens */
        height: 25px;
    }
}


/* Main Content */
.content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.image-container {
    margin-bottom: 20px;
    max-width: 50%;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Carousel Section */
.carousel-container {
    width: 100%;
    margin: 50px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    max-width: 100%;
    margin: auto;
    animation: glow 8s ease-in-out infinite alternate;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8);
    width: 100%;
    height: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 5px;
    width: 25px;
    height: 25px;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 200px;
    }
}

/* Feature Cards */
.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #007bff;
}

.feature-title {
    color: #212529;
    margin-bottom: 15px;
}

.feature-desc {
    color: #6c757d;
    margin-bottom: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttnclr,
.buttnclr:hover {
    background-color: #005E83;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.buttnclr:hover {
    background-color: #0056b3;
}

/* Form Styles */
.container6 {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.container6 h4 {
    color: #212529;
    margin-bottom: 20px;
}

.container6 label {
    color: #343a40;
    font-weight: 500;
    margin-bottom: 5px;
}

.container6 input,
.container6 textarea,
.container6 select {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.container6 input:focus,
.container6 textarea:focus,
.container6 select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.container6 button[type="submit"] {
    background-color: #005E83;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container6 button[type="submit"]:hover {
    background-color: #005E83;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 60px 0;
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
    flex: 1 0 200px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-logo p {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2 0 400px;
    justify-content: space-around;
}

.footer-column {
    margin-bottom: 20px;
    flex: 1 0 150px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #333;
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.footer-social img {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.footer-social img:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .logo {
        max-width: 120px;
    }

    .footer-social img {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        max-width: 100px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social img {
        width: 25px;
        height: 25px;
    }
}

/* Marquee Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(to right, #005E83, #ffffff, #005E83);
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 30px;
    vertical-align: middle;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-content img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-content img {
        height: 50px;
        margin: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-links {
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 10;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        color: #333;
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .marquee-content img {
        height: 40px;
        margin: 0 15px;
    }
}

/* Additional Styles */
.container5 {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

#text2 {
    font-size: 30px;
}

.our-features {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.underline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.line {
    width: 180px;
    height: 3px;
    background-color: #333;
}

.diamond {
    width: 25px;
    height: 25px;
    background-color: #333;
    transform: rotate(45deg);
    margin: 0 15px;
}

.container {
    max-width: 1200px;
}

.video-container {
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.rounded-3 {
    border-radius: 1rem !important;
}

.ratio-16x9 {
    position: relative;
    width: 50px;
}

.ratio-16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.size {
    font-size: 15px;
    text-decoration: none;
    text-align: justify;
}

#clrsend {
    background-color: #005E83;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item {
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-carousel .owl-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.owl-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: #3498db;
    transform: scale(1.1);
}

.owl-carousel .owl-nav button span {
    font-size: 24px;
    color: #333;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    background: #ccc !important;
    border-radius: 50%;
    margin: 0 7px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.owl-carousel .owl-dots button.owl-dot:hover {
    background: #aaa !important;
    transform: scale(1.2);
}

.owl-carousel .owl-dots button.owl-dot.active {
    background: #3498db !important;
    transform: scale(1.4);
}

.mid {
    text-align: center;
}

.txttt {
    font-size: 20px;
}
.txtttt {
    font-size: 20px;
}

#text2 {
    font-size: 20px;
    margin-top: 40px;
}

#muteButton {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#muteButton:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Our Services Section */
.container {
    padding: 20px;
}

.our-services-section {
    text-align: center;
    margin-bottom: 40px;
}

.our-features {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #005E83;
}

.underline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.line {
    width: 100px;
    border: 1px solid #005E83;
}

.diamond {
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 15px solid #005E83;
    position: relative;
    top: -1px;
    margin: 0 10px;
}

.owl-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #005E83;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .service-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .our-features {
        font-size: 1.8em;
    }

    .service-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .our-features {
        font-size: 1.6em;
    }

    .service-item h3 {
        font-size: 1.1em;
    }
}
.site-footer {
  background: #fff;
  backdrop-filter: blur(10px);
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0.95);
}

.footer-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.footer-text strong {
  color: #ff416c;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: #000000;
  font-size: 22px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #ff416c;
  color: #fff;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 20px rgba(255, 65, 108, 0.5);
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    height: 35px;
  }
}
.arn-list {
  padding-left: 0;
  margin-left: 0;
  list-style: none; /* remove default bullet */
}

.arn-item {
  position: relative;
  padding-left: 20px;  /* minimal space for custom bullet */
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.5;
  text-align: left; /* ensures left alignment */
}

.arn-item::before {
  content: '•';  /* custom bullet */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #333;
}
