/* Global Styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

} */
body {
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}
header {
  background: linear-gradient(to right, #a4cdc7, #00796b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px 1px;
  
}
.logo img {
  height: 60px;
  width: auto;
}
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.menu-container.active{
  background-color: #ccc;
}

.top-menu {
  display: flex;
  gap: 100px;
  justify-content: flex-end;
}
.top-menu a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s;
  
}
.top-menu a:hover {
  color: #ddd;
}
.bottom-menu {
  display: flex;
  justify-content: flex-end;
  gap:120px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
  
}

.nav-links a:hover {
  color: #ddd;
}
/* .nav-links a.active{
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
} */

.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
}


/* Hero Section (if needed) */
.hero {
  background: linear-gradient(to right, #a4cdc7, #00796b);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px;
  text-align: left;
  position: relative;
}

/* Flexbox Layout for Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between text and image */
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Content on the Left */
.text-content {
  flex: 1;
}

/* Image Content on the Right */
.image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Align image to the right */
}

.background-image {
  width: 900px; /* Set width */
  height: 400px; /* Set height */
  object-fit: cover; /* Maintain aspect ratio */
  padding-top: 10px;
}

/* Animation Styles */
.animate-slide-in {
  animation: slide-in 1s forwards;
}

.animate-fade-in {
  animation: fade-in 1.5s forwards;
}

.animate-bounce {
  animation: bounce 1.5s infinite;
}

.cta-button {
  background-color: white;
  color: #00796b;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button a {
  text-decoration: none;
  color: inherit;
}

.cta-button:hover {
  background-color: #00bfa6;
  color: white;
}

/* Keyframe Animations */
@keyframes slide-in {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Style for active (clicked) menu item */
/* .nav-links a.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
} */

/* Optional: Add a slight scale effect on click */
.nav-links a:active {
  transform: scale(0.95);
}

/* Animated Cards Section */
/* Container Styling */
/* Container Styling */
.animated-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    gap: 15px; /* Adds spacing between cards */
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
}

/* Individual Card Styling */
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(21, 216, 200, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transform: translateY(100px) scale(1); /* Initial transform */
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.5s ease-out, box-shadow 0.3s ease-out;
}

/* AOS Animation Trigger */
[data-aos="fade-up"].aos-animate {
    transform: translateY(0) scale(1); /* Reset transform */
    opacity: 1;
}

/* Hover Animation for Pop Effect */
.card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 16px rgba(11, 4, 117, 0.2); /* Add a stronger shadow */
}

/* Footer */
.main-footer {
    background-color: #1c1c1c;
    color: white;
    text-align: center;
    padding: 10px;
}
.vision{
  font-size: medium;
}
/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Keyframes for fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applying animation to the logo */
.animated-logo {
    width: 150px; /* Adjust size as needed */
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0; /* Ensures the logo is hidden initially */
}

/* --------Services Drop Down menu---------- */

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 10; /* Ensure the parent has a higher stacking context */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #00bfa6;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* -------DropDown------- */

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #00bfa6;
    color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
/* ----------Nav Animations------- */
/* Add transition effects to the navigation links */
.nav-links a {
    position: relative; /* Needed for the pseudo-element */
    text-decoration: none; /* Remove the underline from links */
    color: #000; /* Change this to your desired text color */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth scaling and color transition */
}

/* Hover effect */
.nav-links a:hover {
    color: #06c9b8; /* Change this to your desired hover color */
    transform: scale(1.1); /* Scale up the link slightly */
}

/* Adding a pseudo-element for the animation */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px; /* Thickness of the underline */
    background-color: #d9d6e4; /* Change this to your desired underline color */
    transition: width 0.3s ease, left 0.3s ease; /* Smooth transition */
}

/* Underline animation on hover */
.nav-links a:hover::after {
    width: 100%; /* Full width on hover */
    left: 0; /* Align to the left */
}
.nav-links a:hover {
    color: #e9f9fa; /* Change this to your desired hover color */
    transform: scale(1.1); /* Scale up the link slightly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Add this to your existing CSS file */

/* Animated Header Styles */
.animated-header {
    text-align: center;
    background-color: #05a38b;
    color: white;
    padding: 2px 0;
    animation: slideDown 1s forwards;
    position: relative;
    top: -100px; /* Start above the viewport */
}

/* Animation Keyframes */
@keyframes slideDown {
    0% {
        top: -100px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

/* Styling for the Gallary */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery img {
    width: 100%;
    max-width: 150px; /* Adjust size as needed */
    height: auto;
}

/* --------------ABOUT------------ */

/* Client Logo Slider Container */
.client-logo-slider {
    margin-top: 0px;
    padding: 2em;
    overflow: hidden; /* Hide overflowing content */
    background-color: #fff;
}

/* Slider Track for Infinite Scrolling */
.slider-track {
    display: flex;
    width: max-content; /* Allow track to extend beyond the container */
    animation: scroll 30s linear infinite;
}

/* Individual Logo Styling */
.slider-logo img {
    width: 208px;
    height: 150px;
    object-fit: contain;
    /* Remove any default margin, padding, or border */
    margin: 0;
    padding: 0;
    border: none;
}

/* Scroll Animation */
@keyframes scroll {
    from {
        transform: translateX(0); /* Start at the beginning */
    }
    to {
        transform: translateX(-50%); /* Scroll halfway for smooth loop */
    }
}
.section-title {
    display: flex;               /* Enables flexbox */
    justify-content: center;     /* Centers horizontally */
    align-items: center;         /* Centers vertically (if needed) */
    height: 300px;               /* Adjust height as per design */
    margin: 20px 0;              /* Optional margin */
    text-align: center;          /* Ensures text is centered inside */
}



/*============================================
   footer---
   ----------------*/
   
/* Global Footer Styling */
.footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  
  /* Footer Column Styling */
  .footer-col {
    flex: 1 1 18%;
    min-width: 100px;
  }
  
  .footer-col h1,
  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #05a38b;
    padding-bottom: 5px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin: 10px 0;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #05a38b;
  }
  
  /* Social Icons Styling */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
  }
  
  .social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #05a38b;
    transform: scale(1.2);
  }
  
  .social-icons a i {
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover i {
    transform: scale(1.5);
  }
  
 /* General Reset and Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body, html {
  height: 100%;
  margin: 0;
}

/* Main Wrapper to Keep Footer at Bottom */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Content Section (to fill the remaining space) */
.content {
  flex: 1;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: white;
  padding: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-section {
  width: 23%;
}

.footer-section h3 {
  border-bottom: 1px solid #00a896;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 24px;
  color: white;
}

.social-icons a:hover {
  color: #00a896;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 2px;
  border-top: 1px solid #444;
  padding-top: 5px;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 15px;
  color: white;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 5px;
}

.footer-bottom-links li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: #42d4d4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

  
  .support-icons {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .support-icons li {
    margin: 10px 0;
  }
  
  .support-icons a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    transition: color 0.3s ease;
  }
  /* footerIcon */
  .support-icons i {
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Hover Animation */
  .support-icons a:hover {
    color: #05a38b;
  }
  
  .support-icons a:hover i {
    transform: scale(1.3); /* Zoom effect */
    color: #05a38b;
  }

  section1 {
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
  }
  .row1 {
    display: flex;
    flex-wrap: wrap;
  }
  .column1 {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  .card1 {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #2c7bfe 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }
  h31 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
  }
  p1 {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    
  }
  .icon-wrapper1 {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  .card1:hover {
    background-position: 0 100%;
  }
  .card1:hover .icon-wrapper1 {
    background-color: #ffffff;
    color: #2c7bfe;
  }
  .card1:hover h3 {
    color: #ffffff;
  }
  .card1:hover p {
    color: #f0f0f0;
  }
  @media screen and (min-width: 768px) {
    section1 {
      padding: 0 2em;
    }
    .column1 {
      flex: 0 50%;
      max-width: 50%;
    }
    
  

  }
  @media screen and (min-width: 992px) {
    section1 {
      padding: 1em 3em;
    }
    .column1 {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }
  

  .service_section layout_padding{
    color: #000;
  }

  /* -------------thankyouu--------------- */

/* thank you page design */
html, body{height: 100%;}
.thank-page-template{background-color: #f2f2f2;}
.thank-you-wrapper{position: relative; height: 100%; }
.thank-you-wrapper > .container{width:780px; margin:0 auto;}
.thank-you-wrapper{text-align: center;}
.thank-you-page-content{position: relative; float:left; width: 100%; background: #f2f2f2; padding:90px; margin:30px 0;box-sizing: border-box;}
.thank-you-page-content::before,
.thank-you-page-content::after { z-index: -1; position: absolute; content: ""; bottom: 15px; left: 10px; width: 50%; top: 80%; max-width: 300px; background: #777; -webkit-box-shadow: 0 15px 10px #777; -moz-box-shadow: 0 15px 10px #777; box-shadow: 0 15px 10px #777; -webkit-transform: rotate(-3deg); -moz-transform: rotate(-3deg); -o-transform: rotate(-3deg); -ms-transform: rotate(-3deg); transform: rotate(-3deg);}
.thank-you-page-content::after { -webkit-transform: rotate(3deg); -moz-transform: rotate(3deg); -o-transform: rotate(3deg); -ms-transform: rotate(3deg); transform: rotate(3deg); right: 10px; left: auto;}
html body .thank-you-wrapper .container{display: table; height: 100%;}
html body .thank-you-wrapper .container > .row{display: table-cell; height: 100%; vertical-align: middle;}
.thank-you-page-logo{float: left; width: 100%;}
.arrow-icon{position: relative; padding-left:55px;}
.arrow-icon::before{ position: absolute; left: 25px; top:20px; content: ""; display: inline-block; box-sizing: border-box; height:10px; width:10px; border-style: solid; border-color: #fff; border-width: 0px 1px 1px 0px; transform: rotate(131deg); transition: border-width 150ms ease-in-out;}
.arrow-icon::after{ content: ""; display: inline-block; width: 20px; background-color: #fff; height: 1px; position: absolute; left:25px; top:25px;}
.thank-you-wrapper ul.footer-nav li a, .thank-you-wrapper ul.footer-nav li a:hover{color:#0a568a;}
.thank-you-wrapper ul.footer-nav li + li::before{ background: rgba(0, 0, 0, 0.3);}
.thank-you-copy p{margin: 0; padding: 0; font-size: 12px;}
.thank-you-page-content h1{position: relative; width: 100%; float: left; margin-bottom: 45px; padding-top: 110px; font-size: 30px; font-weight: 200; line-height: 40px;}
.thank-you-page-content h1::before { content: "\f00c"; top: 0; transform: translateX(-50%); -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); left: 50%; position: absolute; font-family: "FontAwesome"; font-size:60px; text-align: center; float: left; width: 100px; color: green; height: 100px; text-align: center; line-height: 100px; border: 2px solid green;  border-radius:100%;  -webkit-border-radius:100%; -ms-border-radius:100%;}
.thank-you-page-content .btn{padding-top:13px; padding-bottom:13px; padding-right: 25px;}
ul.footer-nav{text-align: right;}
ul.footer-nav li{display: inline-block; position: relative;}
ul.footer-nav li + li{padding-left: 30px;}
ul.footer-nav li + li::before{content: ""; height: 12px; width: 1px; background: #fff; display: inline-block; position: absolute; top: 3px; left:12px;}
ul.footer-nav{text-align: center; margin: 12px 0;}
ul.footer-nav li p,
ul.footer-nav li{font-size: 12px;font-weight: 400;}
ul.footer-nav li a{ text-decoration:none;}
ul.footer-nav li a, ul.footer-nav li a:hover{color: #fff;}
ul.footer-nav li a:hover{color: #fff; text-decoration: underline;}
ul.footer-nav li p{line-height: normal;}
ul.footer-nav li + li::before{background: #fff;}
.btn-primary { background-color: #0a568a; color:#fff; text-decoration:none; border-color: #0a568a; position:relative;   padding-top: 13px; padding-bottom: 13px; padding-right: 25px;}
.btn-primary::before { position: absolute; left: 25px;
    top: 20px;
    content: "";
    display: inline-block;
    box-sizing: border-box;
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #fff;
    border-width: 0px 1px 1px 0px;
    transform: rotate(131deg);
    transition: border-width 150ms ease-in-out;
}
.btn-primary::after { content: ""; display: inline-block; width: 20px; background-color: #fff; height: 1px; position: absolute; left: 25px; top: 25px;}
/* thank you page design */