body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden; /* ✅ This line removes horizontal scrollbar */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  /*width: 100%;*/
  background-color: black; /* or any other background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo span {
  font-size: 0.8em;
  display: block;
}
.id1{
  position: fixed;
}
.navbar {
  list-style: none;
  display: flex;
  gap: 40px;
  padding-right: 600px;
}

.navbar a {
  color: white;
  text-decoration: none;
}



.quote-button {
  position: fixed; /* Fix the button position */
  top: 50%;        /* Adjust as needed */
  right: 0;        /* Stick to the right side */
  transform: translateY(-50%); /* Center vertically */
  
  display: inline-block;
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;

  writing-mode: vertical-rl; /* Makes the text vertical */
  text-orientation: mixed;   /* Ensures readable letters */
}
/*.cl1{*/
/*  padding-left: 400px;*/
/*  padding-top: 200px;*/
/*  color: white;*/

/*}*/
/*.ul{*/
/*  padding-left: 720px;*/
/*  color: white;*/
/*}*/
/*.about{*/
/*  height: 400px;*/
/*  background-color: #222;*/
/*}*/
/* Make sure the dropdown parent is positioned */
.dropdown {
position: relative;
}

/* Dropdown menu style */
.dropdown-menu {
display: none;
position: absolute;
top: 100%;     /* Below the Services link */
left: 0;       /* Align to the left of the parent */
background-color: white;
list-style: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 180px;  /* You can adjust this width */
padding: 0;
margin: 0;
z-index: 1000;
}

/* List items */
.dropdown-menu li {
padding: 10px;
}

.dropdown-menu li a {
text-decoration: none;
color: #333;
display: block;
}

/* Hover effect */
.dropdown-menu li a:hover {
background-color: #f2f2f2;
color: #007BFF;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
display: block;
}




/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 28px;
  color: green;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}

.whatsapp-button:hover {
  transform: scale(1.2);
}




.about-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h5 {
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}


.strategy-wrapper {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.strategy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.strategy-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.strategy-heading {
  font-size: 32px;
  color: #222;
  margin-bottom: 40px;
  font-weight: bold;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}

.strategy-box {
  max-width: 280px;
}

.strategy-icon {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

.strategy-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.strategy-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/* ////Image Section ///// */
.units-section {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.unit {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  cursor: pointer;
}

.unit:hover {
  transform: scale(1.03);
  z-index: 1;
}

.unit-info {
  padding: 15px;
  border-radius: 5px;
  background: rgba(0,0,0,0.5);
  position: relative;
  width: 100%;
}

.unit-info span {
  font-size: 14px;
  color: #ccc;
}

.unit-info h3 {
  font-size: 18px;
  margin-top: 5px;
  color: white;
}

/* hide by default */
.view-project {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,191,255,0.8);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: background 0.3s;
}

/* show on hover of the entire .unit */
.unit:hover .view-project {
  display: block;
}

.view-project:hover {
  background: #00aaff;
}
@media (max-width: 768px) {
  .units-section {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .unit {
    width: 100%;
    height: 250px; /* Reduced height for mobile */
    padding: 10px;
    flex: none; /* prevent flex:1 from stretching */
  }

  .unit-info {
    padding: 10px;
  }

  .unit-info h3 {
    font-size: 16px;
  }

  .view-project {
    padding: 6px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .unit {
    height: 220px; /* Smaller height for small phones */
  }

  .unit-info h3 {
    font-size: 15px;
  }

  .view-project {
    font-size: 12px;
  }
}


/* ////Professional Section */

.professionals-section {
  padding: 60px 30px; /* Adjust vertical padding as needed */
  text-align: center; /* Center the initial heading */
}

.section-heading h2 {
  font-size: 1.2em; /* Adjust size of "OUR PROFESSIONALS" */
  color: #555; /* Adjust color */
  margin-bottom: 10px;
  text-transform: uppercase; /* Make it uppercase */
  letter-spacing: 1px; /* Add some letter spacing */
}

.section-heading h1 {
  font-size: 2.5em; /* Adjust size of "Meet Our Team" */
  color: #333; /* Adjust color */
  margin-bottom: 40px; /* Space before team members */
  font-weight: bold;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns for the layout */
  gap: 30px; /* Spacing between team member sections */
  max-width: 1200px; /* Limit width of the section */
  margin: 0 auto; /* Center the team members grid */
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within each member */
  text-align: left; /* Align text within the quote blocks to the left */
}

.team-member img {
  max-width: 100%; /* Make images responsive */
  height: auto;
  border-radius: 5px; /* Optional: Add rounded corners to images */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.team-member .quote {
  font-style: italic;
  color: #777;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 3px solid #007bff; /* Example accent color */
  background-color: #f9f9f9; /* Light background for quotes */
  border-radius: 3px;
}

.team-member .name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.team-member .designation {
  color: #666;
  font-size: 0.9em;
}

/* Media query for smaller screens (adjust as needed) */
@media (max-width: 768px) {
  .team-members {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }

  .team-member {
    text-align: center; /* Center text on smaller screens */
    align-items: center;
  }

  .team-member .quote {
    text-align: left; /* Keep quote text left-aligned */
  }
}


/* ////Choose Section */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.section {
  display: flex;
  padding: 50px;
  justify-content: space-between;
  align-items: flex-start;
}

.accordion-container {
  width: 50%;
}

.accordion-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.accordion {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  cursor: pointer;
}

.accordion:hover {
  background-color: #f0f0f0;
}

.accordion-header {
  font-weight: 600;
}

.accordion-content {
  display: none;
  padding: 10px 0;
  color: #555;
}

.accordion.active .accordion-content {
  display: block;
}

.image-container {
  width: 45%;
}

.image-container img {
  width: 100%;
  border-radius: 8px;
}


/* ///footer section */
.site-footer {
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
padding: 40px 20px;
font-size: 14px;
}

.footer-top {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}

.footer-column {
flex: 1 1 200px;
margin: 10px 20px;
}

.logo-column {
max-width: 300px;
}

.footer-logo {
width: 140px;
margin-bottom: 15px;
}

.footer-column h4 {
margin-bottom: 15px;
font-size: 16px;
border-bottom: 2px solid #fff;
display: inline-block;
padding-bottom: 5px;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li {
margin: 8px 0;
}

.footer-column ul li a {
color: #ccc;
text-decoration: none;
}

.footer-column ul li a:hover {
color: #fff;
text-decoration: underline;
}

.social-icons a {
color: #ccc;
margin-right: 10px;
font-size: 18px;
}

.social-icons a:hover {
color: #fff;
}

.footer-bottom {
text-align: center;
border-top: 1px solid #444;
padding-top: 15px;
font-size: 13px;
}

.footer-bottom a {
color: #aaa;
text-decoration: none;
margin: 0 5px;
}

.footer-bottom a:hover {
text-decoration: underline;
}


.site-footer {
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
padding: 40px 20px;
font-size: 14px;
}

.footer-top {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}

.footer-column {
flex: 1 1 200px;
margin: 10px 20px;
}

.logo-column {
max-width: 300px;
}

.footer-logo {
width: 140px;
margin-bottom: 15px;
}

.footer-column h4 {
margin-bottom: 15px;
font-size: 16px;
border-bottom: 2px solid #fff;
display: inline-block;
padding-bottom: 5px;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li {
margin: 8px 0;
}

.footer-column ul li a {
color: #ccc;
text-decoration: none;
}

.footer-column ul li a:hover {
color: #fff;
text-decoration: underline;
}

.social-icons a {
color: #ccc;
margin-right: 10px;
font-size: 18px;
}

.social-icons a:hover {
color: #fff;
}

.footer-bottom {
text-align: center;
border-top: 1px solid #444;
padding-top: 15px;
font-size: 13px;
}

.footer-bottom a {
color: #aaa;
text-decoration: none;
margin: 0 5px;
}

.footer-bottom a:hover {
text-decoration: underline;
}


