@keyframes rotateClock {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animated-clock i {
    animation: rotateClock 2s linear infinite;
    display: inline-block;
}
/* Animate on page load */
.animate-social-icons {
    animation: fadeInIcons 1s ease-in-out;
}

/* Icon base styles */
.social-links__icon i {
    color: #fff;
    font-size: 16px;
    margin: 0 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover animation */
.social-links__icon i:hover {
    transform: scale(1.2) rotate(5deg);
    color: #00aced; /* Light blue or change per brand */
}

/* Optional: pulse animation when hovering */
.social-links__icon i:hover::before {
    animation: pulse 0.6s ease-in-out;
}

/* Fade-in effect on load */
@keyframes fadeInIcons {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Pulse keyframe */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

  .owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
  }

.owl-dots {
  display: none !important;
}

            .features-one__card__text{
                font-size:14px !important;
            }
            
/* Decorative Brackets */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #00c3ff;
  border-radius: 4px;
  z-index: 1;
}
.corner.top-left {
     top: -9px;
    left: -20px;

  border-right: none;
  border-bottom: none;
}
.corner.bottom-right {
 bottom: 61px;
    right: -21px;
  border-left: none;
  border-top: none;
}

    /* Typewriter Subtitle with Text Shadow */
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #00c3ff;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: #000;
  animation: typing 3s steps(30, end), blink 0.7s step-end infinite;
  max-width: 100%;
  display: inline-block;
  text-shadow: 1px 1px 2px #66d9ff, 0 0 5px #00c3ff;
}

/* Main Header with Double Text and Shadow Effects */
.double-text {
  position: relative;
  display: inline-block;
  /*padding: 20px 40px;*/
  /*border: 4px solid;*/
  border-image: linear-gradient(90deg, #00c3ff, #000) 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  /*margin-top: 30px;*/
}

/* Gradient Top Text with Glow */
.double-text .text-top {
  font-size: 2.4rem;
  font-weight: 800;
    background: linear-gradient(90deg, #080c81, #4045d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
  text-shadow: 2px 2px 5px rgba(0, 195, 255, 0.6);
}

/* Solid Bottom Text with Softer Shadow */
.double-text .text-bottom {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  display: block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}


.about-wrapper {
  position: relative;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  margin: auto;
  /*overflow: hidden;*/
  background: transparent; /* No background */
}

.icon-left, .icon-right {
  position: absolute;
  width: 130px; /* Increased size */
  z-index: 1;
  opacity: 0.95;
}

.icon-left {
    bottom: 80px;
    width: 120px !important;

  left: -100px;
}

.icon-right {
   top: 100px;
    right: -150px;
    width: 300px !important;
}

/* Separate bounce animations */
.bounce-left {
  animation: bounceLeft 3s infinite ease-in-out;
}

.bounce-right {
  animation: bounceRight 3s infinite ease-in-out;
}

@keyframes bounceLeft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bounceRight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.about-header {
  text-align: center;
  /*margin-bottom: 40px;*/
  position: relative;
  z-index: 1;
}

.about-header .subtitle {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003366;
  line-height: 1.3;
  background: linear-gradient(90deg, #0077ff, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content {
  z-index: 1;
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  padding-top: 20px;
}

.about-content b {
  color: #0d6efd;
}

.about-content a {
  color: #d63384;
  font-weight: 600;
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon-left, .icon-right {
    display: none;
  }

  .about-header h1 {
    font-size: 1.8rem;
  }

  .about-content {
    font-size: 1rem;
  }
}

/*ABOUT SECTION*/

/*SERVICES SECTION*/

    .custom-service-box {
  padding: 30px 20px;
  background: #08080a05;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  border-right: 0;
  border-top: 0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.custom-service-box:hover {
  border-left: 0;
  border-right: 4px solid #080c81; /* Bootstrap blue */
  border-bottom: 4px solid #080c81;
  cursor: pointer;
}

.custom-service-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0d2b4a;
  margin-bottom: 10px;
}

.custom-service-text {
  font-size: 15px;
  color: #000;
}

/*WHY CHOOSES*/
   .custom-tab-image-box {
  margin-top: 60px; /* adjust as needed */
}

.custom-tab-image-box img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*Offer*/
 .curve-bottom {
  margin-bottom: -1px;
  line-height: 0;
  z-index: 1;
  position: relative;
}


.plan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  color: #000;
  border-radius: 12px;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
.plan-card ul li,
.plan-card h5,
.plan-card h6 {
  color: inherit;
  transition: color 0.3s ease;
}
.plan-card:hover h5,
.plan-card:hover h6,
.plan-card:hover li {
  color: #000 !important;
}
.plan-title {
  font-size: 30px;
}

/* Button Style */
.btn-call {
  background-color: #0d6efd;
  color: white;
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.plan-card:hover .btn-call {
  background-color: #fff;
  color: #0d6efd;
}

/* Background Gradients */
.silver-bg {
  background: linear-gradient(135deg, #D8D8D8, #BFBFBF);
}
.gold-bg {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}
.platinum-bg {
  background: linear-gradient(135deg, #E5E4E2, #CCCCCC);
}

/*<!--PLAN SECTION-->   */

   
  .chooseus-style-three {
    background-color: #f9f9f9; /* Light section background */
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .single-item {
    position: relative;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .single-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.08); /* Light black overlay */
    opacity: 0;
    z-index: -1;
    transition: 0.4s ease-in-out;
    border-radius: 10px;
  }

  .single-item:hover::before {
    opacity: 1;
  }

  .single-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
  }

  .icon-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
  }

  .icon-box img {
    width: 60px; /* Increased image size */
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
  }

  .h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  .box p {
    margin-bottom: 0;
    color: #333;
  }

/*<!--PROCESS SECTION-->*/

 .sidebar-one__content {
        font-family: cursive;
    }
                    .qr-btn {
                        background-color: #0d6efd;
                        color: #fff;
                        padding: 8px 20px;
                        border-radius: 5px;
                        font-size: 14px;
                    }

                    .conta-scl i {
                        transition: color 0.3s ease;
                    }

                    .conta-scl i:hover {
                        color: #0d6efd;
                    }