/* ==========================================-- GENRAL START --============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  }
/* ==========================================-- GENRAL END --============================================== */

.preloadercontainer{
  position: absolute;
  background: #ead7d748;
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100vh;
  width: 99.7vw;
  overflow: hidden;
  transition: all .5s ease;
}

#preloader {
  position: fixed;
  top: 10%;
  left: 35%;
  right: 30%;
  margin-bottom: 50%;
  width: 35%;
  height: 75%;
  background-color: rgba(0, 0, 0, 0.675);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000; /* Ensure it covers the entire page */
  border-radius: 50%;
  z-index: 10001;
}




.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 200px; /* Adjust logo size */
  height: auto;
  margin-bottom: 20px;
}

.company-name {
  color: #e0d686;
  font-size: 24px;
  font-family: "Dancing Script", serif;
}

.progress-bar {
  width: 200px; /* Adjust progress bar width */
  height: 10px; /* Adjust progress bar height */
  background-color: #444444af; /* Dark gray background */
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  width: 0;
  height: 100%;
  background-color: #e1d36c; /* Blue progress color */
  border-radius: 5px;
  animation: loadProgress 1.5s ease-in-out forwards;
}

/* Progress bar animation */
@keyframes loadProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* ==========================================-- NAVBAR START --============================================== */
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: #f1f8ff; /* Light blue-gray for body background */
  --blue-color: #0073e6; /* Professional blue */
  --blue-light-color: #e6f0ff; /* Light blue for hover effects */
  --dark-logo-color: #1a1a1a; /* Dark background for logo */
  --light-gray-color: #f0f0f0; /* Light gray for hover effects */

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color); /* Light blue-gray background */
  color: var(--black-color); /* Dark text */
}
.nav__logo img{
  height: 80px; /* Adjust the height as needed */
  width: auto; /* Maintain aspect ratio */
  margin-left: 0;
  padding-left: 0;
  background: transparent; /* Ensure the background is transparent */
  position: relative; /* Add position relative to control stacking context */
  z-index: 1; /* Ensure the logo is above the navbar background */
}

.nav__logo-text {
  font-family: Brush Script MT;
    font-size: 30px; /* Adjust size for visibility */
    font-weight: normal; /* Cursive fonts look better without bold */
    color: #e5c537; /* Professional blue color */
    letter-spacing: 1px; /* Slight letter spacing for better readability */
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
}

/*=============== HEADER ===============*/

  /*=============== HEADER ===============*/
.header {
  /* position: fixed;  <-- Remove this */
  top: 0;
  background: linear-gradient(to right, black 20%, grey 40%, white 100%);
  left: 0;
  width: 100%;
  transition: background-color .3s ease;
  position: relative; /* Default position */


}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: rgb(0, 0, 0);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0; /* Remove margin from the parent container */
  padding: 0; /* Remove padding from the parent container */
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .3s ease-in-out;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__logo img {
    height: 40px; /* Adjust the height for smaller screens */
  }
  .nav__menu {
    position: absolute;
    left: -300px;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    opacity: 0;
    z-index: 99;
    pointer-events: none;
    transition: left .5s ease-out, opacity .1s ease-out;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: rgba(27, 54, 84, 0.799); 
    backdrop-filter: blur(18px);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid black;
    row-gap: 1.5rem;
    z-index: 1000;
    transition: all.4s ease;
  }
}

.nav__link {
  color: var(--blue-color); /* Blue links */
  background-color: var(--white-color); /* White background for links */
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  font-size: 1.2rem; /* Increased font size */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s ease, transform .3s ease-in-out;
}

.nav__link:hover {
  background-color: var(--blue-light-color); /* Light blue on hover */
  transform: scale(1.05);
}

/* Show menu */
.show-menu {
  opacity: 1;
 left: 0;  
 pointer-events: initial;
}
.dropdown__menu {
    border-radius: 30px;
    z-index: 99;
}
/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
  position: relative;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s ease-in-out;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--blue-color); /* Blue text for dropdown */
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  column-gap: .5rem;

  font-weight: var(--font-semi-bold);
  transition: background-color .3s ease, transform .3s ease-in-out;
}
.bradiustop{
 border-radius: 0px 0px 0px 0px;
 border-top: 5px solid rgb(68, 111, 192);

}
.bradiusbottom{
  box-shadow: 0px 5px 0px rgba(41, 144, 240, 0.555);
  border-radius: 0px 0px 45px 45px;
 }
.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--blue-light-color); /* Light blue on hover */
  transform: scale(1.05);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  width: 300px;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease-out, opacity .3s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  opacity: 1;
  transition: max-height .4s ease-in, opacity .3s ease-in-out;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--blue-light-color); /* Light blue for sublinks */
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 1000px) {
  
  #preloader {
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    margin-bottom: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.875);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it covers the entire page */
    border-radius: 0;
  }
}
@media screen and (max-width: 415px) {

.nav__logo-text {
  font-family: Brush Script MT;
    font-size: 15px; /* Adjust size for visibility */
    font-weight: normal; /* Cursive fonts look better without bold */
    color: #f3ce4b; /* Professional blue color */
    letter-spacing: 1px; /* Slight letter spacing for better readability */
}
}
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  
  .container {
    margin-inline: auto;
    margin-left: 20px;
  }
 

  .nav {
    height: calc(var(--header-height) + 1.9rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    color: #128C7E;
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
    transform: none;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, top .3s ease;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s ease-in-out;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s ease-in-out;
  }
}
/*=============== NAVIGATION LINKS ===============*/
.nav__link {
  color: rgb(30, 26, 105); /* Blue text for links */
  background-color:transparent; /* White background for links */
  font-weight: var(--font-semi-bold);
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* To position the underline */
  transition: background-color .3s ease, transform .3s ease-in-out;
}

.nav__link:hover {
  background-color: var(--blue-light-color); /* Light blue on hover */
  transform: scale(1.05);
}

/* Moving Underline Effect */
.nav__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--blue-color); /* Blue underline */
  transition: width 0.3s ease, left 0.3s ease;
}

.nav__link:hover::before {
  width: 100%; /* Underline expands to full width */
  left: 0; /* Start from the left */
}

/* Adjusting underline behavior */
.nav__link:hover {
  background-color: transparent;
  transform: none;
}

.nav__link i {
  font-size: 1.25rem;
  font-weight: initial;
}

/* ==========================================-- NAVBAR end --============================================== */





/* ==========================================-- SLIDER START --============================================== */

  .carousel {
    position: relative;
    width: calc(100vw - 17px);  /* Adjust for scrollbar */
      height: 100vh;
  overflow: hidden;
  margin: 0; /* Ensures no additional margins are applied */
  padding: 0; /* Ensures no additional padding is applied */
  }

  .slides {
    display: flex;
    transition: transform 1s ease;
  }

  .slide {
    min-width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Default alignment */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 20px;
  }

  .slide:nth-child(2) {
    justify-content: center; /* Center alignment for slide 2 */
    align-items: center;
  }

  .slide h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 1s ease;
  }

  .slide p {
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 10px 0;
    opacity: 0;
    transition: all 1s ease 0.5s;
  }

  .slide button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .slide button:hover {
    background-color: #0056b3;
      color: #fff;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  }

  .slide.active h1,
  .slide.active p,
  .slide.active button {
    opacity: 1;
  }

  .slide:nth-child(1).active h1,
  .slide:nth-child(3).active h1,
  .slide:nth-child(4).active h1 {
    transform: translateX(0);
  }

  .slide:nth-child(2).active h1 {
    transform: translateY(0);
  }

  .slide:nth-child(1) {
    background-image: url('img/slide1.jpg');
    background-color: pink;
  }
  .slide:nth-child(2) {
    background-image: url('img/industrial.jpg');
     background-color: green;
  }
  .slide:nth-child(3) {
    background-image: url('img/slide4.jpg');
     background-color: red;
  }
  .slide:nth-child(4) {
    background-image: url('img/slide2.jpg');
     background-color: black;
  }

  .buttons {
    position: absolute;
    top: 74%;
    left: 60%;
    width: 100%;
    display: flex;
    gap: 15px;
    transform: translateY(-50%);
    z-index: 10;
    margin: 0; /* No margin */
  }

  .buttons button {
    background: #739ecbe1;
    color: rgb(1, 1, 25);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50px;
    transition: background 0.3s ease;
  }

  .buttons button:hover {
    background: #5488c1;
    color: #e6f0ff;
  }

  .slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  }

  .slide.active img {
    transform: scale(1);
  }

  @media (max-width: 768px) {
    .nav__link{
      color: white;
    }
    
    .slide h1 {
      font-size: 2rem;
    }

    .slide p {
      font-size: 1rem;
    }

    .slide button {
      font-size: 1rem;
      padding: 8px 15px;
    }

    .buttons button {
      font-size: 1rem;
      padding: 10px 15px;
    }
  }

  /* ==========================================-- SLIDER END --============================================== */




  /*--===========================================-- feature START--==============================================-- */


    /* Basic Reset and Global Styles */
    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }
  
      /* Section Styling */
      .fsection {
        height: auto;
        width: 100%;
        display: grid;
        place-items: center;
        background-color: #ffffffc3;
        padding: 2em 0;
      }
  
      .section-title {
        float: left;
        position: relative;
        width: 100%;
        padding-bottom: 40px; 
      }
  
      .section-title p {
        color: #7d93b2;
        font-size: 13px;
        line-height: 20px;
        max-width: 550px;
        margin: 0 auto;
      }
  
      .section-title h2 {
        float: left;
        width: 100%;
        text-align: center;
        color: #007aff;
        font-size: 34px;
        font-weight: 800;
        position: relative;
      }
  
      .section-separator {
        float: left;
        width: 100%;
        position: relative;
        margin: 20px 0;
      }
  
      .section-separator:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        height: 3px;
        width: 50px;
        border-radius: 3px;
        z-index: 2;
        background-color: #007aff;
        margin-left: -25px;
      }
  
      /* Grid and Card Layout */
      .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
  
      .column {
        width: 100%;
        padding: 0 1em 1em 1em;
        text-align: center;
        box-sizing: border-box;
      }
  
      .fcard {
        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: 45px;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: 0.5s;
        opacity: 1; /* Ensure cards are visible */
        transform: translateY(0px); /* Make sure cards are in position */
      }
  
      h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1f194c;
        margin: 1em 0;
      }
  
      p {
        color: #575a7b;
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.03em;
      }
  
      .icon-wrapper {
        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;
      }
  
      .fcard:hover {
        background-position: 0 100%;
      }
  
      .fcard:hover .icon-wrapper {
        background-color: #ffffff;
        color: #2c7bfe;
      }
  
      .fcard:hover h3 {
        color: #ffffff;
      }
  
      .fcard:hover p {
        color: #f0f0f0;
      }
  
/* Media Queries for Responsiveness */

/* Media Queries for Responsiveness */
@media screen and (max-width: 767px) {
    .row {
      flex-direction: column; /* Stack the columns vertically */
    }
    .column {
      width: 100%; /* Full width for mobile devices */
      padding: 0.5em; /* Reduced padding */
    }
  }
  
  @media screen and (min-width: 768px) {
    .row {
      flex-wrap: wrap;
    }
    .column {
      flex: 0 0 50%; /* Each column takes up 50% of the container on tablets */
      max-width: 50%;
    }
  }
  
  @media screen and (min-width: 992px) {
    .row {
      flex-wrap: wrap;
    }
    .column {
      flex: 0 0 33.33%; /* Each column takes up 33.33% of the container on large screens */
      max-width: 33.33%;
    }
  }
  
  /*--===========================================-- feature ends --==============================================-- */








    /*--===========================================-- imge/text start --==============================================-- */
    .about {
        display: grid;
        margin-top: 100px;
        grid-template-columns: repeat(auto-fit, minmax(18rem, auto)); /* Responsive layout */
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .about-img {
        height: auto;
        background-color: #f5f5f5; /* Light background to emphasize the image */
        border-radius: 5rem 0 5rem 5rem; /* Matches the image radius for consistency */
    }
    
    .about-img img {
        width: 100%;
        height: 400px;
        border-radius: 5rem 0 5rem 5rem;
        object-fit: cover;
    }
    
    .about-text {
        padding: 1rem;
        text-align: left;
        
    }
    
    /* Initial State */
/* Initial State */
.about-img img, .about-text {
    opacity: 0;
    transform: translateY(20px); /* Slight downward offset */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When the section is visible */
.about-img img.visible, .about-text.visible {
    opacity: 1;
    transform: translateY(0);
}


    .about-text span {
        font-size: 1.4rem;
        color: #2c7bfe; /* Solar-inspired orange color */
        font-weight: bold;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
        margin: 1rem 0;
        color: #333; /* Neutral text color for readability */
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6; /* Improves readability */
        color: #555;
    }
    
    .abutton {
      padding: 15px 40px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #0056b3;
      background-color: #fff;
      border: 2px solid #fff;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    }
    
    .abutton:hover {
      background-color: #0056b3;
      color: #fff;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .about {
            grid-template-columns: 1fr;
        }
    
        .about-img img {
            max-height: 300px;
        }
    
        .about-text h2 {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 480px) {
        .about-text h2 {
            font-size: 1.8rem;
        }
    
        .about-text p {
            font-size: 0.9rem;
        }
    
        .abutton {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }
    }
    
    
  /*--===========================================-- imge/text ends --==============================================-- */








    /*--===========================================-- FAQ START --==============================================-- */
    

/* Google Font CDN Link */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  height: 100vh; /* Ensures the full height of the viewport */
}
::selection{
  background: #3058cf9f;
  color: #fff;
}
.accordion{
  display: flex;
  max-width: 1010px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 45px;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 45px 90px 45px 60px;
}
.accordion .image-box{
  height: 360px;
  width: 300px;
}
.accordion .image-box img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 30px;
}
.accordion .accordion-text{
  width: 60%;
}
.accordion .accordion-text .title{
  font-size: 35px;
  font-weight: 600;
  color: #2c7bfe;
  font-family: 'Fira Sans', sans-serif;
}
.accordion .accordion-text .faq-text{
  margin-top: 25px;
  height: 263px;
  overflow-y: auto;
}
.faq-text::-webkit-scrollbar{
  display: none;
}
.accordion .accordion-text li{
  list-style: none;
  cursor: pointer;
}
.accordion-text li .question-arrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-text li .question-arrow .question{
  font-size: 18px;
  font-weight: 500;
  color: #595959;
  transition: all 0.5s ease;
}
.accordion-text li .question-arrow .arrow{
  font-size: 20px;
  color: #595959;
  transition: all 0.5s ease;
}
.accordion-text li.showAnswer .question-arrow .arrow{
  transform: rotate(-180deg);
  transition: transform 0.5s ease; /* Longer rotation duration */
}
.accordion-text li:hover .question-arrow .question,
.accordion-text li:hover .question-arrow .arrow{
  color: #2c7bfe;
}
.accordion-text li.showAnswer .question-arrow .question,
.accordion-text li.showAnswer .question-arrow .arrow{
  color: #2c7bfe;
}
.accordion-text li .line{
  display: block;
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
}
.accordion-text li p{
  width: 92%;
  font-size: 15px;
  font-weight: 500;
  color: #595959;
  opacity: 0; /* Start with hidden */
  visibility: hidden; /* Hidden initially */
  max-height: 0; /* Initially, the content is hidden */
  padding: 0; /* No padding initially */
  overflow: hidden; /* Prevents content from showing when collapsed */
  transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, visibility 0.5s ease;
}
.accordion-text li.showAnswer p{
  opacity: 1; /* Fade in */
  visibility: visible; /* Make visible */
  max-height: 200px; /* Adjust to the max height of the content */
  padding: 10px; /* Add padding to make the answer visible */
}

@media (max-width: 994px) {
 
  .accordion{
    max-width: 100%;
    padding: 45px 60px 45px 60px;
  }
  .accordion .image-box{
    height: 360px;
    width: 220px;
  }
  .accordion .accordion-text{
    width: 63%;
  }
}
@media (max-width: 820px) {
  .wrapper{
    height: 180vh;
  }
  .accordion{
    flex-direction: column;
    margin-top: 10px;
  }
  .accordion .image-box{
    height: 360px;
    width: 300px;
    background: #2a50e81c;
    width: 100%;
    border-radius: 25px;
    padding: 30px;
  }
  .accordion .accordion-text{
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 538px) {
    .image-box img{
        height: 500px;
    }
  .wrapper{
    height: 170vh;
  }
  .accordion{
    padding: 25px;
  }
  .accordion-text li p{
    width: 98%;
  }
}
/*--===========================================-- FAQ ends --==============================================-- */








/*--===========================================-- review starts --==============================================-- */
.rcontainer{
    position: relative;
    width: 100%;
    min-height: 450px;
    background-color: #ffffff;
}
.rcontainer .contents-wraper{
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    text-align: center;
}
.contents-wraper .rheader h1{
    position: relative;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}
.contents-wraper .rheader h1::before{
    content: '';
    width: 200px;
    height: 2px;
    background-color: #006994;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.contents-wraper .testRow{
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
}
.testRow .testItem{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.testRow .testItem:not(.active){
    top: 0;
    left: -100%;
}
.testRow .testItem img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    outline: 2px solid #006994;
    outline-offset: 2px;
}
.testRow .testItem h3{
    font-size: 30px;
    font-style: italic;
    padding: 7px;
}
.testRow .testItem h4{
    font-style: italic;
}
.testRow .testItem p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
}
.contents-wraper .indicators{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}
.contents-wraper .indicators .dot{
    width: 15px;
    height: 15px;
    margin: 0px 3px;
    border: 3px solid #aaa;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
    background-color: #006994;
}
@keyframes next1{
    from{
        left: 0%;
    }
    to{
        left: -100%;
    }
}
@keyframes next2{
    from{
        left: 100%;
    }
    to{
        left: 0%;
    }
}

@keyframes prev1{
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}
@keyframes prev2{
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}

@media(max-width: 550px){
    .rcontainer .contents-wraper{
        width: 90%;
    }
    .contents-wraper .rheader h1{
        font-size: 32px;
    }
    .testRow .testItem h3{
        font-size: 26px;
    }
    .testRow .testItem p{
        font-size: 16px;
        letter-spacing: initial;
        line-height: initial;
    }

}

/*--===========================================-- review ends --==============================================-- */




/*--===========================================-- contact start --==============================================-- */


.ccontainer{
    width: 100%;
    background: #fff;
    border-radius: 55px;
    margin-top: 100px;
    padding: 50px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
  }
  .ccontainer .ccontent{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ccontainer .ccontent .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .ccontent .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .ccontent .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .ccontent .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  .ccontent .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .ccontent .left-side .details .text-one,
  .ccontent .left-side .details .text-two{
    font-size: 14px;
    color: #4a4a50;
  }
  .ccontainer .ccontent .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .ccontent .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 20px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .right-side .button input[type="submit"]{
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  }
  .button input[type="button"]:hover{
    background-color: #4285cc;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
  
  @media (max-width: 950px) {
    .ccontainer{
      width: 100%;
      padding: 30px 40px 40px 35px ;
    }
    .ccontainer .ccontent .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 820px) {
    .ccontainer{
      margin: 40px 0;
      height: 100%;
    }
    .ccontainer .ccontent{
      flex-direction: column-reverse;
    }
   .ccontainer .ccontent .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .ccontainer .ccontent .left-side::before{
     display: none;
   }
   .ccontainer .ccontent .right-side{
     width: 100%;
     margin-left: 0;
   }
  }

  
.ccontainer .input-box select {
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  appearance: none;
  cursor: pointer;
}

.ccontainer .input-box select:focus {
  border: 2px solid #3e2093;
}
/* Dropdown Styling */
.dropdown {
  margin: 15px 0;
  overflow: hidden;
}
.dropdown select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #b6afb2;
  border-radius: 26px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.dropdown select:focus {
  border-color: #3e2093;
}

  /* General Styling for Container */
.branch-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px;
    padding: 20px;
    background-color: #f4f7fa;
}

/* Styling for Individual Branch Cards */
.branch-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 45px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blue Color Scheme for Text */
.branch-card h3 {
    font-size: 1.2em;
    color: #005c8c; /* Professional Blue */
    transition: color 0.3s ease; /* Smooth color transition */
}

.branch-card p {
    color: #555;
    font-size: 0.9em;
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Icon Styling */
.branch-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Hover Effect with Blue Background Coming from Bottom */
.branch-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(19, 19, 76); /* Blue color */
    transition: transform 0.3s ease;
    transform: translateY(100%); /* Initially off-screen at the bottom */
    z-index: -1; /* Ensure it stays behind the content */
}

.branch-card:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.branch-card:hover::before {
    transform: translateY(0); /* Moves the blue background up */
}

/* Change text color to white on hover */
.branch-card:hover h3,
.branch-card:hover p {
    color: #fff;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  
    .branch-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .branch-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .branch-container {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}
/*--===========================================-- contact end --==============================================-- */






/*--===========================================-- footer start --==============================================-- */
footer{
    background-color: rgb(19, 19, 76);
    position: relative;
    width: 100%;
    min-height: 350px;
    padding: 3rem 1rem;
    margin-top: 70px;
}
.fcontainer {
   max-width: 1140px;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;


}
.frow{
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.col{
   min-width: 250px;
   color:#e8e9f1f2;
   font-family: poppins;
   padding:0 2rem;
}
.col .logo{
   width: 100px;
   margin-bottom:25px;
}
.col h3{
   color:#e8e9f1f2;
   margin-bottom: 20px;
   position: relative;
   cursor: pointer;
}
.col h3::after{
   content: '';
   height:3px;
   width:0px;
   background-color: #e8e9f1f2;
   position: absolute;
   bottom: 0;
   left:0;
   transition: 0.3s ease;

}
.col h3:hover::after{
   width:30px
}
.col .social a i{
   color:#e8e9f1f2;
   margin-top:2rem;
   margin-right: 5px;
   transition: 0.3s ease;
}
.col .social a i:hover{
   transform: scale(1.5);
   filter:grayscale(25);
}
.col .links a{
   display: block;
   text-decoration: none;
   color:#f2f2f2;
   margin-bottom: 5px;
   position: relative;
   transition: 0.3s ease;
}
.col .links a::before{
   content:'';
   height: 16px;
   width:3px;
   position: absolute;
   top:5px;
   left:-10px;
   background-color: rgb(116, 121, 224);
   transition: 0.5s ease;
   opacity: 0;
}
.col .links a:hover::before{
   opacity: 1;
}
.col .links a:hover{
   transform: translateX(-8px);
   color:rgb(192, 194, 237);
}
.col .contact-details{
   display: inline-flex;
   justify-content: space-between;
}
.col .contact-details i{
   margin-right:15px;
}
.frow .form{
   display: flex;
   justify-content: center;
   align-items: center;
   padding:2rem 0;
}
.frow .form input{
   background-color: rgb(228, 237, 255);
   border:0;
   outline:none;
   padding:14px 20px;
   border-radius: 6px;
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
.form button{
   padding:14px 20px;
   border:0;
   border-radius: 6px;
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
   background-color: rgba(137, 190, 255, 0.664);
}

/********** Responsive Design ********/
@media(max-width:900px)
{
 .frow{
   flex-direction: column;
 }
 .col{
   width: 100%;
   text-align: left;
   margin-bottom: 25px;
 }
}
@media(max-width:768px)
{
 .frow{
   flex-direction: column;
 }
 .col{
   width: 100%;
   text-align: left;
   margin-bottom: 20px;
 }
}
/*--===========================================-- footer end --==============================================-- */





/*--===========================================-- whatsapp/scrolltop start --==============================================-- */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
  }
  
  .whatsapp-button img {
    width: 35px;
    height: 35px;
    z-index: 1;
  }
  
  /* Hover Effect */
  .whatsapp-button:hover {
    box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.8),
                0 0 40px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
  }
  
  .whatsapp-button::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.6), transparent);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0);
  }
  
  .whatsapp-button:hover::before {
    opacity: 1;
    transform: scale(1.5);
  }
  
  /* Media Queries for responsiveness */
  @media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
  
    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
    .scroll-to-top {
      width: 45px;
      height: 45px;
      bottom: 70px;
      right: 15px;
  }
  
  .scroll-to-top i {
      font-size: 20px;
  }
  }
  
  @media (max-width: 480px) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 10px;
        left: 10px;
    }
  
    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }
    .scroll-to-top {
      width: 40px;
      height: 40px;
      bottom: 60px;
      right: 10px;
  }
  
  .scroll-to-top i {
      font-size: 18px;
  }
  }
  
  
  
   /* Scroll to Top (Up Arrow) Button */
   .scroll-to-top {
    position: fixed;
    bottom: 6px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #216f7ca7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.4s ease;
    overflow: hidden;
  }
  
  .scroll-to-top:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 20px 10px rgba(135, 206, 235, 0.8), /* Sky blue glow */
                0 0 40px 20px rgba(135, 206, 235, 0.6); /* Sky blue glow */
  }
  
  .scroll-to-top i {
    color: #050539;
    font-size: 25px;
    z-index: 1;
  }
  
  .scroll-to-top::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgb(135, 207, 235)); /* Sky blue glow */
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0);
  }
  
  .scroll-to-top:hover::before {
    opacity: 1;
    transform: scale(1.5);
  }
  
  /* Scroll Progress Bar Inside Up Arrow Button */
  .scroll-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#12751693 0%, transparent 0%);
    clip-path: circle(50% at 50% 50%);
    transition: background 0.1s ease;
    z-index: 0;
  }
  
  /*--===========================================-- whatsapp/scrolltop end --==============================================-- */















  
  /*--===========================================-- About us> hero start --==============================================-- */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.aboutonesection {
    height: 30vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.aboutoneimage {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.aboutonelayer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 154, 192, 0.037); /* Semi-transparent blue */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.aboutonetitle {
    font-size: 3rem;
    margin: 0;
    animation: fadeInDown 2s ease-out;
}

.aboutonedescription {
    font-size: 1.2rem;
    margin-top: 15px;
    animation: fadeInUp 2s ease-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutonetitle {
        font-size: 2rem;
    }

    .aboutonedescription {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .aboutonetitle {
        font-size: 1.5rem;
    }

    .aboutonedescription {
        font-size: 0.9rem;
    }
}















/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@300;400;500;600;700&display=swap");

/* General CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Custom CSS */
.abouttwocontainer {
  width: 100%;
  min-height: 70vh;
  background: linear-gradient(to top, #ffffff 0%, #d0e7f3 100%); /* White at the top, light blue at the bottom */  background-size: cover;
  background-position: center;
  color: #1f0303;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8%;
}

.abouttwocontainer .abouttwoheader {
  padding: 0 0 60px 0;
}



.abouttwoheader .abouttwosub-title {
  font-size: 48px;
  line-height: 1;
}

.abouttwocontainer .abouttwocounters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.abouttwocounters .abouttwocounter {
  width: 240px;
  background-color: #fff;
  color: #000;
  padding: 30px 15px;
  margin: 10px;
  border-radius: 45px;
  cursor: pointer;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: all 0.5s;
  box-shadow: rgba(57, 197, 229, 0.8) 0px 2px 8px 0px;

}

.abouttwocounters .abouttwocounter:hover {
  box-shadow: rgba(38, 145, 169, 0.8) 0px 2px 8px 0px;
  transform: translateY(-15px);
}

.abouttwocounters .abouttwocustomer {
  background-image: url(assets/counter_icon01.png);
}

.abouttwocounters .abouttwoproject {
  background-image: url(assets/counter_icon02.png);
}

.abouttwocounters .abouttwoemployee {
  background-image: url(assets/counter_icon03.png);
}

.abouttwocounters .abouttwoaward {
  background-image: url(assets/counter_icon04.png);
}

.abouttwocounters .abouttwocounter .abouttwonumber {
  font-size: 40px;
  font-weight: 700;
}

.abouttwocounters .abouttwocustomer .abouttwonumber {
  color: #fd297b;
}

.abouttwocounters .abouttwoproject .abouttwonumber {
  color: #2760dc;
}

.abouttwocounters .abouttwoemployee .abouttwonumber {
  color: #58c0cf;
}

.abouttwocounters .abouttwoaward .abouttwonumber {
  color: #a667f8;
}

.abouttwocounters .abouttwocounter .abouttwodetail {
  font-size: 18px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 620px) {
  .abouttwocontainer {
    padding: 60px 6%;
  }

  .abouttwocontainer .abouttwoheader {
    padding: 0 0 40px 0;
  }

  .abouttwocounters .abouttwocounter {
    width: 45%;
  }
}

@media (max-width: 540px) {
  .abouttwoheader .abouttwotitle {
    font-size: 32px;
  }

  .abouttwoheader .abouttwosub-title {
    font-size: 36px;
  }

  .abouttwocounters .abouttwocounter {
    width: 80%;
  }
}                    
.abouttwocounter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.abouttwocounter.visible {
  opacity: 1;
  transform: translateY(0);
}
















.aboutthreeabout {
  display: grid;
  margin-top: 100px;
  margin-bottom: 50px;
  grid-template-columns: repeat(auto-fit, minmax(18rem, auto)); /* Responsive layout */
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.aboutthreeimg{
  height: auto;
  border-radius: 5rem 0 5rem 5rem; /* Matches the image radius for consistency */
}

.aboutthreeimg img {
  width: 100%;
  height: 400px;
  border-radius: 5rem 0 5rem 5rem;
  object-fit: cover;
}

.aboutthreetext {
  padding: 1rem;
  text-align: left;
  
}

/* Initial State */
/* Initial State */
.aboutthreeimg img, .aboutthreetext {
opacity: 0;
transform: translateY(20px); /* Slight downward offset */
transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When the section is visible */
.aboutthreeimg img.visible, .aboutthreetext.visible {
opacity: 1;
transform: translateY(0);
}


.aboutthreetext span {
  font-size: 1.4rem;
  color: #2c7bfe; /* Solar-inspired orange color */
  font-weight: bold;
}

.aboutthreetext h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #333; /* Neutral text color for readability */
}

.aboutthreetext p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6; /* Improves readability */
  color: #555;
}

.aboutthreebutton {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #2c7bfe; /* Solar-inspired orange for the button */
  color: white;
  text-decoration: none;
  border-radius: 45px;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

.aboutthreebutton:hover {
  background-color: #2c7bfe; /* Darker orange on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .aboutthreeabout{
      grid-template-columns: 1fr;
  }

  .aboutthreeimg img {
      max-height: 300px;
  }

  .aboutthreetext h2 {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .aboutthreetext h2 {
      font-size: 1.8rem;
  }

  .aboutthreetext p {
      font-size: 0.9rem;
  }

  .aboutthreebutton {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
  }
}


/*--===========================================-- About us> hero end --==============================================-- */




/*--===========================================-- resaident start --==============================================-- */

.why-choose-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 45px;
  background-color: #e4effb8a;
}

.why-choose-us .left {
  flex: 1;
  margin-right: 20px;
}

.why-choose-us .left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1f2937;
}

.why-choose-us .left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #6b7280;
}

.why-choose-us .left button {
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background-color: #3b82f6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.why-choose-us .left button:hover {
  background-color: #2563eb;
}

.why-choose-us .right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.wcard {
  background: #ffffff;
  border-radius: 45px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.wcard img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.wcard h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1f2937;
}

.wcard p {
  font-size: 1rem;
  color: #6b7280;
}



@media (max-width: 768px) {
  .why-choose-us {
      flex-direction: column;
      padding: 20px;
  }

  .why-choose-us .left {
      margin-right: 0;
      margin-bottom: 20px;
      text-align: center;
  }

  .why-choose-us .left h2 {
      font-size: 2rem;
  }

  .why-choose-us .left p {
      font-size: 1rem;
  }

  .why-choose-us .left button {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .wcard h3 {
      font-size: 1.2rem;
  }

  .wcard p {
      font-size: 0.95rem;
  }
}




/*--===========================================-- resaident end --==============================================-- */








body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

h1 {
  text-align: center;
  margin: 30px 0;
  font-size: 2.5em;
  color: #0073e6;
}

.partner-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.partner-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.partner-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-card {
  background: #f4f7fd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1em;
  min-height: 150px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.partner-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #0073e6;
}

.partner-card p {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555;
}

.partner-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.partner-image-center img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .partner-grid-container {
    grid-template-columns: 1fr;
  }

  .partner-image-center img {
    margin-bottom: 20px;
  }
}

.partner-contact-form {
  margin: 20px 15px;
}

.partner-form-group {
  margin-bottom: 15px;
}

.partner-form-group label {
  display: block;
  margin-bottom: 5px;
}

.partner-submit-btn {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.partner-submit-btn:hover {
  background-color: #005bb5;
}












body {
  background-color: #ffffff;
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

.gallery {
  display: grid;
  margin-top: 100px;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.gallery > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.gallery .tall {
  grid-row: span 2;
}









  .contact1-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .contact1-info-section {
            text-align: center;
            padding: 50px 20px;
        }

        .contact1-info-section h3 {
            margin-bottom: 30px;
            font-size: 24px;
            color: #333;
            text-transform: uppercase;
        }

        .contact1-info-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact1-info-card {
            flex: 1 1 300px;
            max-width: 300px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .contact1-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .contact1-info-card h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #555;
        }

        .contact1-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact1-info-item span {
            display: inline-block;
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 50%;
            background: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
        }

        .contact1-info-item a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            border-radius: 8px;
            padding: 5px 10px;
            background-color: #e9f1ff;
            display: inline-block;
            flex: 1;
            transition: all .5s ease;
            text-align: center;
        }

        .contact1-info-item a:hover {
            color: #fff;
            background-color: #007bff;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .contact1-info-section h3 {
                font-size: 20px;
            }

            .contact1-info-cards {
                flex-direction: column;
                gap: 10px;
            }

            .contact1-info-card {
                width: 90%;
                height: 10px;
                margin: 0 auto;
            }

            .contact1-info-item span {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .contact1-info-item a {
                font-size: 14px;
                padding: 5px;
            }
        }

        @media (max-width: 480px) {
            .contact1-info-section h3 {
                font-size: 18px;
            }

            .contact1-info-card {
                padding: 15px;
            }

            .contact1-info-item span {
                width: 25px;
                height: 25px;
                font-size: 14px;
            }

            .contact1-info-item a {
                font-size: 12px;
            }
        }



        .devloper{
          margin-top: 50px;
        }
        .devloper p{
          color: #2cc8dd;
        }





        /* Sticky Phone Icon */
.sticky-phone {
  position: fixed;
  right: -55PX;
  padding: 0;
  bottom: 200px; /* Position it near the bottom */
  z-index: 10;
}

.sticky-phone a {
  text-decoration: none;
  text-transform: capitalize;
}

.sticky-phone button {
  background-color: #133a63;
  color: #fff;
  font-size: 20px; /* Increase size for the icon */
  padding: 10px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; 
  transform: rotate(90deg); 
}

/* Tooltip Style */
.sticky-phone button .tooltip {
  visibility: hidden; /* Hide tooltip initially */
  position: absolute;
  bottom: 160%; /* Position the tooltip above the button */
  left: -55%;
  right: 55PX;
  transform: rotate(270deg);
  background-color: hsl(211, 100%, 92%);
  color: #342323;
  padding: 5px 10px;
  border-radius: 24px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease; /* Fade in effect */
  z-index: 2; /* Ensure tooltip appears above the button */
}

/* Make tooltip visible when hovered */
.sticky-phone button:hover .tooltip {
 opacity: 0;
}

/* Hover Effects */
.sticky-phone button:hover {
  background-color: #0056b3;
  transform: translateY(-px); /* Slight hover effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Keyframe Animation for continuous rotation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Optional: Adjust icon size */
.sticky-phone button i {
  font-size: 24px; /* Icon size */

}
.vidcontainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 20px;
  background: url(img/industrial.jpg);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* Black transparent overlay */
.vidcontainer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 41, 42, 0.553); /* 0.5 = 50% transparency */
  z-index: 1;
}
.videosge {
  width: 900px;
  max-height: 100%; /* Limits height to fit container */
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  outline: none;
  z-index: 2;
  background-color: #005bb55d;
  backdrop-filter: blur(10px);
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
  .videosge {
    width: 100%;
  }
}
