.dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    min-width: 150px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .dropdown-content a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f0f0f0;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
  }
  header{
        display: flex;
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 60px;
        padding: 0 20px;
        font-size: 18px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        z-index: 10;
    }
    #logo{
        width: 100px; 
        height: 70px;
        margin-top: -2%;
    }
    #mobileno{
        position: fixed;
        text-align: center;
        right: 8px;
        top: 10px;
        width: 100%;
        max-width: 12%;
        height: 5%;
        font-size: 14px;
        background-color: #034786ff;
        color: white;
        border: none;
        border-radius: 3px;
        z-index: 10;
    }
    .menu-toggle{
        display: none;
    }
    nav {
       
        width: 100%;
        text-align: start;
        display: flex;
        gap: 20px;

        }
    nav a{
        position: relative;
        margin: 5px;
        margin-left: 5px;
        text-decoration: none;
        color: #333333;
    }
    nav a:hover{
        color: #034786ff;
        cursor: pointer;
    }
    nav a::after{
        content: "";
        width: 100%;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #034786ff;
        transform: scaleX(0);
        transform-origin: right;
        transition: 0;
    }
    nav a:hover::after{
        transform: scaleX(1);
        transform-origin: left;
    }
    .aboutsection {
    background-color: #f7f7f7;
    color: #332525;
    padding: 50px 20px 20px;
}

.aboutcontent{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.aboutitem1 {
    flex: 1;
    min-width: 200px;
}

.aboutitem1 img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.aboutitem2, .aboutitem3, .aboutitem4{
    flex: 1;
    min-width: 200px;
}

.aboutitem2 h2, .aboutitem3 h2, .aboutitem4 h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.aboutitem2 ul, .aboutitem3 ul {
    padding: 0;
}

.aboutitem2 ul li, .aboutitem3 ul li {
    margin-bottom: 10px;
    margin-left: 5px;
}

.aboutitem2 ul li a, .aboutitem3 ul li a {
    color: #332525;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.aboutitem2 ul li a:hover, .aboutitem3 ul li a:hover {
    color: #034786ff;
}

.aboutitem4 .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.aboutitem4 .contact-item i {
    font-size: 18px;
    margin-right: 10px;
    margin-top: 3px;
}

.aboutitem4 .contact-item a {
    color: #332525;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.aboutitem4 .contact-item a:hover {
    color: #034786ff;
}
    .partnerssection {
  background-color: #f5f5f5;
  padding: 20px 10px;
}

.partnerscontent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; 
  gap: 15px;
  flex-direction: row;
  flex: 1;
}

.partneritem {
  flex: 1;
  text-align: center;
}

.partneritem img {
  width: 100%;
  max-width: 80px;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partneritem img:hover {
  filter: grayscale(0%);
}
footer {
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: space-between;
    background-color: #000000;
    padding: 30px;
    margin-top: 30px;
}

footer p {
    font-size: 14px;
    color: #d1d1d1;
    margin: 0;
}
footer a{
    text-decoration: none;
    color: #d1d1d1;
}
footer a{
    text-decoration: none;
}
footer i {
    font-size: 20px;
    margin-right: 15px;
    color: #666;
    transition: color 0.3s ease;
}
footer i.fa-linkedin { color: #0077b5; }
footer i.fa-facebook { color: #1877f2; }
footer i.fa-instagram { color: #e4405f; }
footer i.fa-youtube { color: #ff0000; }
footer i:hover {
    color: #f56c6c;
}
footer a:hover {
    color: #034786ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif, "Poppins";
  background: #f7f7f7;
}


.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active.animate .overlay {
  opacity: 1;
  transform: translateY(-50%);
}

.overlay h2 {
  font-size: 3.2rem;
  max-width: 800px;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  background-color: #034786ff;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #034786ff;
}

.btns {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 3;
}

.btns button {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px 18px;
  margin-left: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.btns button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}


.info-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.info-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}


.gallerysection {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.gallerysection h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
}

.gallery {
  position: relative;
  overflow: hidden;
}

.gallery-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-container img {
  height: 300px;
  width: auto;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 12px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.gallery-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-dots {
  text-align: center;
  margin-top: 20px;
}

.gallery-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.gallery-dots .dot.active {
  background-color: #333;
}


.whychooseus {
  margin: 100px 0;
}

.background-wrapper {
  background: url("img/whychooseus.jpg") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.background-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.background-wrapper h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 36px;
  font-weight: bold;
}

.whychooseuscontainer {
  max-width: 1200px;
  margin: -80px auto 20px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 3;
}

.items {
  background-color: #4f6b83;
  padding: 40px 20px;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
}

.items span i {
  font-size: 40px;
  margin-bottom: 15px;
  color: white;
}

.items h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.items p {
  font-size: 16px;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2e475d;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-container {
  display: flex;
  gap: 30px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background-color: #f6f6f6;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  border-radius: 6px;
  position: relative;
  text-align: left;
}

.quote {
  font-size: 60px;
  color: #cbd5e1;
  position: absolute;
  top: 15px;
  left: 20px;
  line-height: 0;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  margin-top: 40px;
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  color: #000;
}

.testimonial-card small {
  color: #666;
}

.arrow {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  transition: transform 0.2s;
}

.arrow:hover {
  transform: scale(1.2);
}

.testimonial-dots {
  margin-top: 30px;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background-color: #333;
}

.clients-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.clients-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2e475d;
  margin-bottom: 40px;
}

.clients-categories {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 15px 35px;
  font-weight: 600;
  border: none;
  background-color: #e0e0e0;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.category-btn.active {
  background-color: #034786ff;
  color: white;
}

.category-btn:hover {
  background-color: #d3d3d3;
}

.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 1000px;
  margin: 0 auto;
}

.clientitems {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px;
  scrollbar-width: none;
}

.clientitems::-webkit-scrollbar {
  display: none;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-align: center;
}

.logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-item span {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  white-space: nowrap;
}

.carousel-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  transition: transform 0.2s;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

.clients-dots {
  margin-top: 20px;
}

.clients-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.clients-dots .dot.active {
  background-color: #333;
}


.announcement-section {
  position: relative;
  background-image: url('img/whychooseus.jpg');
  margin: 0;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

.announcement-section  a{
  color: #f7f7f7f7;
}

.announcement-section  button{
    background-color: #435c74;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
}

.announcement-section  button:hover{
  background-color: #000;
}

.announcement-panel {
  background-color: #034786ff;
  position: relative;
  left: 10%;
  color: hsl(0, 0%, 100%);
  padding: 30px 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 35%;
  align-items: center;
}
.announcement-section{
  font-size: 0.9rem;
  margin-top: 10px;
}

.announcement-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.announcement-subheader {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.announcement-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

.announcement-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}

.announcement-link:hover {
  text-decoration: underline;
}

.announcement-closing {
  font-size: 0.9rem;
  margin-top: 10px;
}

.announcement-text{
  text-align: justify;
}



@media (max-width: 768px) {
  header {
    display: fixed;
    flex-wrap: wrap;
    height: auto;
    padding: 10px 15px;
    margin-left: -2%;
  }
  #logo {
    width: 80px;
  }
  #mobileno {
    display: none;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9;
  }
  nav.active {
    display: flex;
  }
  nav a {
    font-size: 16px;
    margin: 10px 20px;
  }
  .menu-toggle {
    display: block;
  }
  .slider {
    height: 60vh;
  }
  .overlay h2 {
    font-size: 2rem;
  }
  .gallery-container img {
    height: 200px;
  }
  .testimonial-card {
    flex: 0 0 80%;
  }
  
  .clients-categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px
  }

.clients-carousel {
    max-width: 100%;
    padding: 10px 0;
  }

  .clientitems {
    flex-direction: row; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
  }

  .logo-item {
    width: 40%; 
    max-width: 180px; 
    text-align: center;
  }

  .logo-item img {
    height: 50px; 
    object-fit: contain;
  }

  .carousel-btn {
    display: none; 
  }

  .clients-dots {
    margin-top: 15px;
  }

  .announcement-panel {
    left: 0;
    width: 100%;
  }
  header {
       
        position: fixed;
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
}
#mobileno{
        display: none;
}
#logo {
        width: 80px;
}
.menu-toggle {
        display: block;
        position: fixed;
        width: 15%;
        background: none;
        border: none;
        right: 5px;               
}
            .menu-toggle a:hover{
                background-color:#1877f2;
            }
            .nav{
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #ffffff;
                position: absolute;
                top: 60px;
                left: 0;
                padding: 10px 0;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                z-index: 10;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 10px 20px;
                font-size: 16px;
            }
            
}

@media (max-width: 480px) {
  #logo {
    width: 60px;
  }
  .menu-toggle {
    font-size: 1.5rem;
  }
  nav a {
    font-size: 14px;
  }
  .slider {
    height: 50vh;
  }
  .overlay h2 {
    font-size: 1.5rem;
  }
  .gallery-container img {
    height: 150px;
  }
  .testimonial-card {
    flex: 0 0 90%;
  }
   header {
        padding-left: 20px;
        position: fixed;
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
}
#mobileno{
        display: none;
}
#logo {
        width: 80px;
}
.menu-toggle {
        display: block;
        position: fixed;
        width: 15%;
        background: none;
        border: none;
        right: 5px;               
}
            .menu-toggle a:hover{
                background-color:#1877f2;
            }
            .nav{
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #ffffff;
                position: absolute;
                top: 60px;
                left: 0;
                padding: 10px 0;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                z-index: 10;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 10px 20px;
                font-size: 16px;
            }

}