* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* background-color:rgb(208, 205, 205); */
}
span{
  color: #007bff;
}


/*=== topbar ===*/
.topbar {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;  
  width: 100%;
}


/*=== header ===*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #007bff;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .logo h2 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}
.header .contact {
  text-align: right;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.header .contact .contact1{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.header .contact .contact1>p{
    margin: 0;
    line-height:1px;
    color: #555;
    font-weight: bold;
}
.header .contact .time>p{
    margin: 0;
    font-size: 13px;
    line-height:1px;
    font-weight: bold;
    cursor: pointer;
    /* color:white; */
    color: white;
     /* Animation */
    animation: pulse-effect 2s ease-in-out infinite;
}
@keyframes pulse-effect {
  0% {
    transform: scale(1.10);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.header .contact a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
.header .contact a:hover {
  color:black;
}
.header .contact .time>p:hover{
    color: black;
}


/*=== navbar ===*/
.navBar {
  display: block;
  background: #007bff;
  border-top: 1px solid white;
  padding: 10px;
}
.navBar .navLinks {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}
.navBar .linkRight {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}
.linkRight li {
  position: relative;
}
.linkRight li a {
  text-decoration: none;
  font-size: 1.03rem;
  color: white;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s, color 0.3s;
}
.linkRight li a:hover {
  /* background:white; */
  color:black;
}
.linkRight li.sign button {
  background: red;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
  box-sizing: border-box;
    /* Pulse animation */
  animation: pulse-btn 2s ease-in-out infinite;
}
/* @keyframes for pulse */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.linkRight li.sign button:hover {
    background-color: white;
    color: red;
}


/*=== Dropdown menu ===*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5);
}
.dropdown-menu li a {
  display: block;
  color:black;
  margin-top:-22px;
  font-size:1rem;
}
/* Hamburger button styling */
.hamburger {
  display: none;
  font-size:2rem;
  color:white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

/* Mobile / small-screen styles */
@media (max-width: 450px) {
  .header{
    height: 150px;
  }
  .header .contact {
    text-align: center;
    /* font-size: 0.8rem; */
    /* margin-top: 0.5rem; */
    display: flex;
    flex-direction: column;
  }
  .header .contact .contact1{
    display: flex;
    flex-direction: column;
  }
  .navBar {
    display: none;
    width: 100%;
  }
  .navBar.active {
    display: block;
    background:rgb(208, 205, 205);
  }
  .navBar .navLinks {
    padding: 1rem;
  }
  .navBar .linkRight {
    flex-direction: column;
    gap: 0;
  }
  .linkRight li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  .linkRight li a {
    display: block;
    width: 100%;
    color:#007bff;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  .linkRight li.sign button {
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #007bff;
    margin-top: 0.5rem;
  }
    /* Ensure last items appear correctly */
  .linkRight li.sign,
  .linkRight li:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Make Contact Us button visible and spaced */
  .linkRight li.sign button {
    background: red;
    color: white;
    margin: 10px 0;
    width: 90%;
  }

  /* Style Log In link for better visibility */
  .linkRight li a[href*='Log In'] {
    color: white;
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  /* Allow scrolling if list is long */
  .navBar.active .linkRight {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 100px; /* space for button visibility */
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
  }
  /* .dropdown:hover .dropdown-menu {
    visibility: visible;
  } */
  .dropdown-menu li a {
    color:black;
    padding-left: 2rem;
  }
  .hamburger{
    display: block;
  }
}









.hero-section {
  padding: 6rem 1rem;
  background:rgb(208, 205, 205);
  font-family: "Poppins", sans-serif;
}
.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* Animation */
  animation:bounceIn 1.5s  ease-out both;
}
/* Keyframes for bounce effect */
@keyframes bounceIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  60% {
    transform: translateY(10%);
    opacity: 1;
  }
  80% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-content {
  flex: 1 1 45%;
}
.hero-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color:black;
}
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-button {
  display: inline-block;
  font-weight: bold;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.hero-button:hover {
  background-color:red;
  transform: translateY(-2px);
}
.hero-image {
  flex: 1 1 45%;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}
.hero-image img:hover{
  transform: scale(0.7);
}

/* Mobile responsive */
@media (max-width: 450px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    flex: 1 1 100%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-button {
    width: 100%;
    padding: 0.9rem 0;
  }
}







.about-section {
  padding: 5rem 1rem;
  background-color:rgb(208, 205, 205);
  font-family: "Poppins", sans-serif;
  color: #333;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  transform-origin: center;
  will-change: transform, opacity;
  /* border: 3px solid #007bff; */
  animation: pulse 2s ease-in-out infinite;
}
/* keyframes */
@keyframes pulse {
  0%   { transform: scale(1);  transform: rotatey(180deg);  opacity: 1; }
  50%  { transform: scale(1.04); opacity: 0.96; }
  100% { transform: scale(1);    opacity: 1; }
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  
}

.about-content {
  flex: 1 1 45%;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color:black;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.about-bullets li {
  font-size: 1rem;
  margin:-0 0 0.75rem;
}

.about-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.about-btn:hover {
  background-color:red;
  transform: translateY(-2px);
}

/* Responsive for mobile screens */
@media (max-width:450px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-btn {
    width: 100%;
    padding: 0.9rem 0;
  }
}







.about-history {
  padding: 5rem 1.5rem;
  background:rgb(6, 47, 91);
  font-family: "Poppins", sans-serif;
  color: #333;
}

.about-history .container {
  max-width: 1100px;
  margin: 0 auto;
}

.history-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color:white;
  /* color: red; */
  margin-bottom: 3rem;
  position: relative;
}

.history-timeline {
  position: relative;
  padding: 2rem 0;
}
.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  /* background: #007bff; */
  background:white;
   animation: timelinePulse 4.5s ease-in-out infinite;
  transform: translateX(-50%);
}

.history-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.history-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.history-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.history-item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid white;
  /* text-shadow: 2px 2px 5px; */
  animation: timelinePulse 4.5s ease-in-out infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
}

.history-item:nth-child(odd)::before {
  right: -10px;
}

.history-item:nth-child(even)::before {
  left: -10px;
}

.history-year {
  font-size: 1.8rem;
  font-weight: 700;
  color:white;
  margin-bottom: 0.5rem;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  /* padding: 2rem 0; */
  text-shadow: 2px 2px 5px;
  animation: timelinePulse 4.5s ease-in-out infinite;
  transform-origin: center center;
  /* will-change: transform, opacity, box-shadow; */
}
/* Pulse animation keyframes */
@keyframes timelinePulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  50% {
    transform: scale(1.07);
    opacity: 0.98;
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
}

.history-content {
  /* background:#007bff; */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: inline-block;
}

.history-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
  text-decoration: underline;
}

.history-content p {
  font-size: 1rem;
  line-height: 1.6;
  /* color: #555; */
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .history-timeline::before {
    left: 20px;
  }
  .history-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    text-align: left !important;
  }
  .history-item:nth-child(even) {
    left: 0;
  }
  .history-item::before {
    left: 0;
  }
}






.team-section {
  background:rgb(208, 205, 205);
  padding: 5rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color:black;
  margin-bottom: 3rem;
  position: relative;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.team-member {
  /* background: #fff; */
  background-color: rgb(6, 47, 91);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.member-photo {
  position: relative;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-photo:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,123,255,0.8);
  /* background: rgb(208, 205, 205); */
  color:rgb(233, 191, 111);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  transition: opacity 0.4s ease;
}

.member-photo:hover .overlay {
  opacity: 1;
}
.member-name {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: white;
  font-weight: 600;
}

.member-role {
  /* color: #007bff; */
  font-weight: 500;
  color: white;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 1rem;
}
.member-responsibility{
  color: rgb(233, 191, 111);
}

/* Subtle animation on scroll */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.team-member {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.team-member:nth-child(1) { animation-delay: 0.2s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 450px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 90%;
  }
}








/* === Offer Section === */
.offer-section {
  background:rgb(208, 205, 205);
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.offer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color:black;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.offer-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.offer-item {
  background:#007bff;
  border-radius: 15px;
  padding: 30px 25px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.offer-item:hover::before {
  left: 10px;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #007bff;
  transition: transform 0.4s ease;
}

.offer-item:hover .offer-icon {
  transform: scale(1.2);
}

.offer-heading {
  font-size: 1.3rem;
  color:white;
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
}

.offer-text {
  color:white;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.offer-item:hover .offer-text {
  color:rgb(233, 191, 111);
  border-left: 6px solid rgb(233, 191, 111);
  font-weight: bold;
}

.offer-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 30px;
  color:#007bff;
  border: 3px solid #007bff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}

.offer-btn:hover {
  /* background: #007bff; */
  transform: scale(1.05);
  border: 2px solid red;
  color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offer-grid {
    flex-direction: column;
    align-items: center;
  }

  .offer-item {
    width: 90%;
  }

  .offer-title {
    font-size: 1.8rem;
  }
}










/* ================= Footer – Consulting Business Style ================= */

.footer-consulting {
  background-color:#007bff;   /* dark navy background */
  color: #ffffff;
  padding: 4rem 1rem 2rem;
  font-family: inherit;
  font-weight: bold;
}

.footer-consulting a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-consulting a:hover,
.footer-consulting a:focus {
  color:black;  /* lighter highlight on hover */
  text-decoration: underline;
}

.footer-consulting .footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap:4rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-consulting .footer-col {
  flex: 1 1 220px;
}

.footer-consulting .footer-col h4 {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color:white;
    /* ensure space for underline */
  padding-bottom: 0.4rem;
}
.footer-consulting .footer-col h4::after {
  content: "";
  position: absolute;
  left:0;
  bottom: 0;
  height: 4px;                /* thickness of the underline */
  width: 0;
  background-color:white;  /* underline color */
  animation: underlineLoop 3s ease-in-out infinite;
}

@keyframes underlineLoop {
  0%   { width: 0; opacity: 0; }
  10%  { width: 23%; opacity: 1; }
  50%  { width: 23%; opacity: 1; }
  70%  { width: 0; opacity: 0; }
  100% { width: 0; opacity: 0; }
}


.footer-consulting .footer-col.about p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-consulting .footer-col.services ul,
.footer-consulting .footer-col.follow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-consulting .footer-col.follow ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 30px;
  margin-left: -40px;
}

.footer-consulting .footer-col.services ul li,
.footer-consulting .footer-col.follow ul li {
  margin-bottom: 0.6rem;
}

.footer-consulting .footer-col.services ul li a,
.footer-consulting .footer-col.follow ul li a {
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-consulting .footer-col.contact p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.footer-consulting .footer-col.contact p:last-child {
  margin-bottom: 0;
}

.footer-consulting .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer-consulting .footer-bottom .legal {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-consulting .footer-bottom .legal li {
  margin: 0;
}

.footer-consulting .footer-bottom .legal li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 450px) {
  .footer-consulting {
    padding: 3rem 0.5rem 1.5rem;
    text-align: center;
  }

  .footer-consulting .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-consulting .footer-col {
    flex: 1 1 100%;
    width: 100%;
  }

  /* .footer-consulting .footer-col h4 {
    font-size: 1.1rem;
    padding-bottom: 0.3rem;
  } */
  .footer-consulting .footer-col h4 {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color:white;
    
    padding-bottom: 0.4rem;
  }
  .footer-consulting .footer-col h4::after {
    content: "";
    position: absolute;
    left:38%;
    bottom: 0;
    height: 4px;                /* thickness of the underline */
    width: 0;
    background-color:white;  /* underline color */
    animation: underlineLoop 3s ease-in-out infinite;
  }
  .footer-consulting .footer-col.about p,
  .footer-consulting .footer-col.services ul li,
  .footer-consulting .footer-col.follow ul li,
  .footer-consulting .footer-col.contact p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .footer-consulting .footer-col.follow ul {
  margin-left: 110px;
  }

  .footer-consulting .footer-bottom {
    font-size: 0.8rem;
    padding-top: 0.75rem;
  }

  .footer-consulting .footer-bottom .legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

