* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    border: border-box;
}
/*.navbar {
    height: 60px;
    width: 100%;
    background-color: #545454;
    color: white;  
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.navlogo{
    height: 50px;
    width: 200px;
    margin-left: 0px;
}*/

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

/* Globe */
.globe {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #4caf50, #0b3d91);
  position: relative;
  margin-right: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Rotating orbit */
.favicon {
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  animation: spin 6s linear infinite;
}

/* Text */
.logo-text .title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 10px;
  color: #222;
  margin-top: 3px;
}

/* Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*.searchBar{
    display: flex;
    justify-content: space-evenly;
    background-color: pink;
    width: 620px;
    height: 40px;
    border-radius: 4px;
}
.search{
    width: 100%;
    border-radius: 4px;
    font-size: 1rem;
    border: none;
    
}
.navMag{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #febd68;
    color: black;
    border: none;
    border-radius: 4px;
}*/

/* =========================
   Header & Navbar
   ========================= */
header {
  width: 100%;
  background-color: #007bff;
  border-bottom: 1px solid #e5e5e5;
}

/* Top Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

/* --- Global Reset and Body Styling --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f4f7fa; /* Light, professional background */
}
.main-content {
    text-align: center;

}

/* --- CTA Button (The website's login button) --- */
.cta-button {
    background-color: #007bff; /* Primary brand color */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

/* --- Modal/Pop-up Styles --- */
.modal {
    /* Hidden by default */
    display: none; 
    /* Full screen backdrop */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Darkened background/overlay */
    background-color: rgba(0, 0, 0, 0.5); 
    /* Center the content */
    align-items: center;
    justify-content: center;
    /* Fade-in effect */
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    /* Card-like professional shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    max-width: 400px; /* Standard login form width */
    width: 90%;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

/* --- Logo/Header Styling --- */
.logo-area {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.logo-area h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* --- Close Button --- */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

/* --- Form Elements Styling --- */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-sizing: border-box; /* Important for padding/width calculation */
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me {
    color: #555;
    cursor: pointer;
}

.forgot-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* --- Modal Footer --- */
.modal-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #777;
}

.signup-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    text-decoration: underline;
}
/*Menue styling bar*/
/*.naveSelect{
    background-color: #777;
    border: none;
    color: white;
}
.navMenu{
    width: 100%;
    height: 40px;
    background-color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;  
    color: white; 
    

} 
ul li{
   list-style: none;
   display: inline-block;
   margin: 0px 10px;
   font-size: 15px;
   cursor: pointer;
}
.home{
    display: flex;
}*/
/* =========================
   Search Bar
   ========================= */
.searchBar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}

.searchBar input {
  border: none;
  padding: 8px 10px;
  width: 200px;
  outline: none;
  font-size: 14px;
}

.navMag {
  background-color: #007bff;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   Login Button
   ========================= */
.cta-button {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* =========================
   Social Icons
   ========================= */
.navSocial {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #555;
}

.navSocial i {
  cursor: pointer;
  transition: color 0.2s ease;
}

.navSocial i:hover {
  color: #007bff;
}

/* =========================
   Navigation Menu
   ========================= */
.navMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background-color: #222;
  color: #fff;
}

.contact {
  font-size: 14px;
}

.home ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.home ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.home ul li a:hover {
  opacity: 0.8;
}
.home{
  display: flex;
}
.fa-bars, .fa-x{
  font-size: 25px;
  font-weight: 700;
  display: none; 
  cursor: pointer;

}
/* =========================
   Language Selector
   ========================= */
.language-selector select {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ffffff;
  color: #333;
}
/* =========================
   Responsive Design for nave menue
   ========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }
.fa-phone{
  display:inline-flex;
 }
  .home ul {
    display: none;

  }
  ul li{
    margin: 10px;
  }
  .fa-bars{
  display: block;
  }
  #menue{
    width: 100%;
    background-color:#007bff;
    position:absolute;
    top: 229px;
    left: 0;
    text-align: center;
    z-index: 1000;
  
  }
  .searchBar input {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .language-selector {
    margin-left: 0;
    margin-top: 0px;
  }
}

/* MAIN CONTAINER */
.contant-contaner {
  margin-top: 0px;
  background-color: #f8f9fc;
  padding: 20px 5%;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* INNER WRAPPER */
.contantContaner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* MAIN CONTENT */
.contant {
  flex: 3;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contant h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.contant h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0066ff;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.contant p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.contant a {
  display: inline-block;
  margin-top: 15px;
  color: #0066ff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contant a:hover {
  color: #004bcc;
  text-decoration: underline;
}

/* SIDEBAR */
.sidemenue {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.sidemenue h5 {
  font-size: 16px;
  color: #1a1a1a;
}

.sidemenue strong {
  font-size: 18px;
  color: #0066ff;
}

.sidemenue img {
  margin: 15px 0;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* SIDEBAR LINKS */
.sidemenue ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.sidemenue li {
  margin-bottom: 12px;
}

.sidemenue a {
  color: #333;
  font-size: 14.5px;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sidemenue a:hover {
  background: #0066ff;
  color: #ffffff;
}

/* Overall Section */
.whyclient {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 5%;
  background-color: #f9fafc;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

/* WHY CHOOSE US */
.whychose {
  flex: 1;
  min-width: 300px;
}

.whychose h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1a1a1a;
  position: relative;
}

.whychose h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0066ff;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.whychose div {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whychose div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.whychose h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0066ff;
}

.whychose p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/*tranforming*/
.transformheading{
  flex: 1;
  min-width: 300px;
  
}
.transformheading h3{
  font-size: 20px;
  color: #0066ff;
  margin-bottom: 8px;
  position:relative;
}
.transformheading p{
   font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* CLIENT TESTIMONIALS */
.clients {
  flex: 1;
  min-width: 300px;
}

.clienheading h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.clienheading h3::after{
  content: "";
  width: 60px;
  height: 4px;
  background: #0066ff;
  display: block;
  margin-top: 8px;
  border-radius: 2px;

}

.clienheading h5 {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}

/* Individual Testimonials */
.clients > div:not(.clienheading) {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 5px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.clients p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}

.clients h8 {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
}

/* Decorative Quote */
.clients > div:not(.clienheading)::before {
  content: "“";
  font-size: 60px;
  color: #0066ff;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.15;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whyclient {
    flex-direction: column;
    padding: 40px 20px;
  }

  .whychose h2,
  .clienheading h3 {
    text-align: center;
  }

  .whychose h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Team member*/
/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Main section */
.ourteam {
  padding: 10px 20px;
  background: #f5f7fa;
  text-align: center;
}

.ourteam h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:#0066ff
}

.ourteam h8 {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Image container */
.imgcontaner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Team cards */
.imgcontaner > div {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imgcontaner > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Images */
.imgcontaner img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #eee;
}

/* Names */
.imgcontaner h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

/* Descriptions */
.imgcontaner p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive text adjustments */
@media (max-width: 600px) {
  .ourteam h2 {
    font-size: 28px;
  }

  .imgcontaner img {
    width: 120px;
    height: 120px;
  }
}
