
.container1 {
    position: relative;
    width: 100vw;
    height: 100vh;
  }

  /* Common shape styles */
  .shape {
    position: absolute;
    opacity: 0.8;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
    mix-blend-mode: screen;
  }

  /* Circle */
  .circle {
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    border-radius: 50%;
    animation: moveCircle 4s infinite ease-in-out alternate;
  }

  /* Rectangle */
  .rectangle {
    width: 80px;
    height: 40px;
    background-color: #6c5ce7;
    animation: moveRectangle 5s infinite ease-in-out alternate;
  }

  /* Triangle */
  .triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid #fdcb6e;
    animation: moveTriangle 6s infinite ease-in-out alternate;
  }

  /* Star */
  .star {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #74b9ff;
    transform: rotate(35deg);
    animation: rotateStar 3s infinite ease-in-out alternate;
  }

  .star:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #74b9ff;
    transform: rotate(-70deg);
  }

  /* Animations */
  @keyframes moveCircle {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(250px, 150px) scale(1.3); background-color: #ff9f43; }
    100% { transform: translate(-250px, -150px) scale(1); background-color: #ff6b6b; }
  }

  @keyframes moveRectangle {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-200px, 200px) rotate(180deg) scale(1.2); background-color: #a29bfe; }
    100% { transform: translate(200px, -200px) rotate(360deg) scale(1); background-color: #6c5ce7; }
  }

  @keyframes moveTriangle {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(150px, -150px) scale(1.5); border-bottom-color: #ffeaa7; }
    100% { transform: translate(-150px, 150px) scale(1); border-bottom-color: #fdcb6e; }
  }

  @keyframes rotateStar {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    50% { transform: rotate(180deg) translate(100px, 100px) scale(1.3); border-bottom-color: #00cec9; }
    100% { transform: rotate(360deg) translate(-100px, -100px) scale(1); border-bottom-color: #74b9ff; }
  }

  /* animation in topbar */
  /* Fade-in animation for contact information */
  .fade-in {
    animation: fadeIn 2s ease forwards;
    opacity: 0;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  /* Bounce animation for social icons */
  .bounce {
    animation: bounce 1.5s infinite ease-in-out;
  }

  .bounce:hover {
    animation: pulse 0.6s infinite ease-in-out;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  /* Pulse effect on hover */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

/* animation for logo */
/* Rotate and scale the logo image */
.logo-img {
    animation: rotateScale 1.8s ease forwards;
    transform-origin: center;
    opacity: 0;
  }

  /* Typing effect for tagline */
  .logo1 {
    display: inline-block;
    /* font-size: 14px; */
    margin-top: 5px;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #ffd700;
    animation: typing 2.5s steps(20) forwards, blinkCaret 0.75s step-end infinite;
  }

  /* Hover animation: pulse and color change */
  .logo:hover .logo-img {
    animation: pulse 0.6s ease infinite alternate;
  }

  .logo:hover .logo1 {
    color: #ff5733; /* Different color on hover */
    border-right-color: #ff5733;
  }

  /* Keyframes for rotate and scale effect */
  @keyframes rotateScale {
    0% { opacity: 0; transform: rotate(-15deg) scale(0.8); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
  }

  /* Typing effect */
  @keyframes typing {
    0% { opacity: 1; width: 0; }
    100% { opacity: 1; width: 100%; }
  }

  /* Blinking cursor effect */
  @keyframes blinkCaret {
    0%, 100% { border-color: transparent; }
    50% { border-color: #ffd700; }
  }

  /* Pulse effect */
  @keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }

  /* animation for home page */
  /* Fade-in animation for carousel images */
  .carousel-img {
    animation: zoomInFade 2s ease forwards;
    opacity: 0;
    transform: scale(1.1);
  }

  /* Staggered fade-in for captions */
  .carousel-caption .animated {
    opacity: 0;
  }
  
  .carousel-caption .animated.fadeInLeft {
    animation: fadeInLeft 1.5s ease forwards 0.5s;
  }
  
  .carousel-caption .animated.fadeInRight {
    animation: fadeInRight 1.5s ease forwards 1s;
  }

  .carousel-caption .animated.fadeInUp {
    animation: fadeInUp 1.5s ease forwards;
  }

  /* Delay classes for staggered button effect */
  .delay-1s { animation-delay: 1.5s; }
  .delay-2s { animation-delay: 2s; }

  /* Keyframes for zooming and fading effect */
  @keyframes zoomInFade {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* Slide and fade animations */
  @keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* navbar animation */
  .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5733; /* Change this color to match your theme */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ff5733; /* Customize hover color */
  }
  
  .navbar-nav .nav-link:hover::after {
    transform: translateX(0);
  }
  .navbar-nav .nav-link {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 0.5s ease forwards;
  }
  
  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .navbar-nav .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .navbar-nav .nav-link:nth-child(2) { animation-delay: 0.2s; }
  .navbar-nav .nav-link:nth-child(3) { animation-delay: 0.3s; }
  .navbar-nav .nav-link:nth-child(4) { animation-delay: 0.4s; }
  .navbar-nav .nav-link:nth-child(5) { animation-delay: 0.5s; }
  .navbar-nav .nav-link:nth-child(6) { animation-delay: 0.6s; }
  .navbar-nav .nav-link:nth-child(7) { animation-delay: 0.7s; }
  .navbar-nav .nav-link:nth-child(8) { animation-delay: 0.8s; }
  .navbar-nav .nav-link {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #fff;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ff5733; /* Customize hover color */
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  .navbar-nav .nav-link {
    opacity: 0;
    filter: blur(4px);
    animation: fadeInClear 0.5s ease forwards;
  }
  
  @keyframes fadeInClear {
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
  
  .navbar-nav .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .navbar-nav .nav-link:nth-child(2) { animation-delay: 0.2s; }
  .navbar-nav .nav-link:nth-child(3) { animation-delay: 0.3s; }
  .navbar-nav .nav-link:nth-child(4) { animation-delay: 0.4s; }
  .navbar-nav .nav-link:nth-child(5) { animation-delay: 0.5s; }
  .navbar-nav .nav-link:nth-child(6) { animation-delay: 0.6s; }
  .navbar-nav .nav-link:nth-child(7) { animation-delay: 0.7s; }
  .navbar-nav .nav-link:nth-child(8) { animation-delay: 0.8s; }

  

/* For free consulting design */
@keyframes buttonHover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary {
  animation: buttonHover 2s infinite;
}

.btn-primary:hover {
  animation: buttonHover 0.5s ease-in-out;
}

/* call options  */
/* Animation keyframes */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Apply the animation to the icon */
.phone-icon {
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(20deg);
  }
}

.phone-icon {
  animation: rotate 0.5s infinite alternate;
}

/* Container for phone number and options */
.call-container {
  position: relative;
}

/* Call options - hidden initially */
.call-options {
  position: absolute;
  top: 40px; /* Position below the phone number */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* Show call options on hover */
.call-container:hover .call-options {
  opacity: 1;
  pointer-events: auto;
}

/* Styling for phone number */
.phone-number {
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.phone-number:hover {
  color: #0056b3; /* Slight color change on hover */
}

/* Button styling */
.call-options a {
  display: inline-block;
  margin: 5px;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.btn-success {
  background-color: #28a745;
}

.btn-info {
  background-color: #17a2b8;
}

/* Hover effect for buttons */
.btn-success:hover {
  background-color: #218838;
}

.btn-info:hover {
  background-color: #138496;
}


/* animation in home carousel */
/* Keyframes for blur-in */
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(10px); /* Start with a heavy blur */
  }
  100% {
    opacity: 1;
    filter: blur(0); /* End with no blur */
  }
}

/* Apply the blur-in effect */
.carousel-img.blurIn {
  animation: blurIn 1.5s ease;
}

