body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #f4f6f9;
    color: #333;
}

/*** Spinner ***/
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s linear 0.8s; /* smooth fade out */
    z-index: 99999;
    overflow: hidden;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease; /* smooth fade in */
}

#spinner img {
    width: 110px;
    height: 110px;
    animation: flipSpin 2s linear infinite;
    transform-origin: center;
}

/* Vertical rotation (flip effect) */
@keyframes flipSpin {
    0%   { transform: rotateY(0deg) scale(1); }
    50%  { transform: rotateY(180deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}


/* Navbar */
.navbar {
    background-color: #20a4e4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    margin-right: 15px;
}
.navbar .nav-link:hover {
    color: #ffd700 !important;
}

/* Slider */
.carousel-inner img {
    width: 100%;
    height:300px;
    object-fit: cover;
}

@media (max-width:420px){
          
    .carousel-inner img{
              
        height:350px;
    }
}
      
.carousel-caption {
    bottom: 25%;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    top:50px;
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #20a4e4;
    text-align: center;
    margin-bottom: 50px;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Team Images */
.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Testimonial */
.testimonial-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.05);
}

/* Clients */
.client-logo {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
footer {
    background-color: #20a4e4;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}
footer a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}
footer a:hover {
    color: #ffd700;
}

/* New Image Animations */
.rotate-horizontal {
  animation: rotateHorizontal 2s ease-in-out;
  transform-origin: center;
  backface-visibility: hidden;
}
.rotate-vertical {
  animation: rotateVertical 2s ease-in-out;
  transform-origin: center;
  backface-visibility: hidden;
}

/* New 3D Rotations */
@keyframes rotateHorizontal {
  0% { transform: rotateY(-180deg); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: rotateY(0deg); opacity: 1; }
}
@keyframes rotateVertical {
  0% { transform: rotateX(-180deg); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

/* Animations for slider images */
.fade-in { animation: fadeIn 2s ease-in-out; }
.slide-left { animation: slideLeft 2s ease-in-out; }
.slide-right { animation: slideRight 2s ease-in-out; }
.zoom-in { animation: zoomIn 2s ease-in-out; }
.rotate-in { animation: rotateIn 2s ease-in-out; }

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideLeft { from {transform: translateX(-100%);} to {transform: translateX(0);} }
@keyframes slideRight { from {transform: translateX(100%);} to {transform: translateX(0);} }
@keyframes zoomIn { from {transform: scale(0);} to {transform: scale(1);} }
@keyframes rotateIn { from {transform: rotate(-360deg) scale(0);} to {transform: rotate(0deg) scale(1);} }

/* Text animations */
.fade-in-text { animation: fadeInText 2s ease forwards; opacity:0; }
.slide-left-text { animation: slideLeftText 2s ease forwards; opacity:0; }
.slide-right-text { animation: slideRightText 2s ease forwards; opacity:0; }
.zoom-in-text { animation: zoomInText 2s ease forwards; opacity:0; }
.rotate-in-text { animation: rotateInText 2s ease forwards; opacity:0; }

@keyframes fadeInText { 0% {opacity:0;} 100% {opacity:1;} }
@keyframes slideLeftText { 0% {opacity:0; transform:translateX(-100px);} 100% {opacity:1; transform:translateX(0);} }
@keyframes slideRightText { 0% {opacity:0; transform:translateX(100px);} 100% {opacity:1; transform:translateX(0);} }
@keyframes zoomInText { 0% {opacity:0; transform:scale(0);} 100% {opacity:1; transform:scale(1);} }
@keyframes rotateInText { 0% {opacity:0; transform:rotate(-360deg) scale(0);} 100% {opacity:1; transform:rotate(0deg) scale(1);} }

/* Slide 6: Fade + Zoom */
.slide-fade {
  animation: fadeZoom 5s ease-in-out;
}
@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(1.1); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Slide 7: Tilt-In Rotation */
.slide-tilt {
  animation: tiltIn 5s ease-in-out;
}
@keyframes tiltIn {
  0% { opacity: 0; transform: rotate(-8deg) scale(1.2); }
  50% { opacity: 0.7; transform: rotate(4deg) scale(1.05); }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}

/* ---------- TEXT ANIMATIONS ---------- */

/* Bounce in text */
@keyframes bounceInText {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.slide-text[data-animation="bounce-in-text"] {
  animation: bounceInText 1s ease forwards;
}

/* Slide up text */
@keyframes slideUpText {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.slide-text[data-animation="slide-up-text"] {
  animation: slideUpText 1s ease forwards;
}

/* Dash indicator styling on slider bottom */
.carousel-dash-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.carousel-dash-indicators .dash {
  width: 20px;
  height: 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.carousel-dash-indicators .dash.active {
  width: 30px;
  background-color: #20a4e4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Navbar hover animation */
.navbar .nav-link {
  transition: all 0.3s ease;
}
.navbar .nav-link:hover {
  color: #ffd700 !important;
  transform: translateY(-2px);
}

/* Logo hover effect */
.navbar-brand:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Navbar toggler button for mobile */
.navbar-toggler {
    border-color: #fff; /* White outline */
}

.navbar-toggler-icon {
    filter: invert(1); /* Keep the icon white */
}

/* Navbar link hover animations */
.navbar .nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link i {
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ffd700 !important;
  transform: translateY(-3px);
}

.navbar .nav-link:hover i {
  transform: rotate(20deg) scale(1.2);
}

/* Optional underline animation */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
  width: 70%;
}

.top-info-bar div i {
    margin-right: 5px;
    color: #ffd700;
    transition: transform 0.3s;
}

.top-info-bar div i:hover {
    transform: scale(1.2) rotate(10deg);
}

.top-info-bar a {
    transition: all 0.3s;
}

.top-info-bar a:hover {
    color: #ffd700;
    transform: scale(1.2);
}


/* Section Styling */
#services {
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Service Icons */
.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.service-icon i {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon i {
  transform: rotate(15deg) scale(1.2);
}

/* Title & Text */
.service-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* Learn More Button */
.service-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #20a4e4;
  border: 2px solid #20a4e4;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-btn:hover {
  background: #20a4e4;
  color: #fff;
  box-shadow: 0 6px 18px rgba(32,164,228,0.4);
}

/* Fade-up Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }
.fade-up.delay-4 { animation-delay: 0.8s; }
.fade-up.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Subheading Styling */
.premium-subheading {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #20a4e4, #0077b6, #20a4e4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s ease infinite, floatUp 1.2s ease forwards;
  position: relative;
  padding-bottom: 15px;
}

/* Highlight "Premium" */
.premium-subheading span {
  color: #20a4e4;
  font-style: italic;
  text-shadow: 0 0 10px rgba(32, 164, 228, 0.6);
}

/* Animated Underline */
.premium-subheading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #20a4e4, #0077b6);
  border-radius: 5px;
  /*box-shadow: 0 0 12px rgba(32, 164, 228, 0.7);*/
  animation: underlinePulse 1.5s ease-in-out infinite;
}

/* Gradient Flow Animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Heading Entrance Animation */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Underline Glow Animation */
@keyframes underlinePulse {
  0%, 100% { width: 120px; opacity: 0.8; }
  50% { width: 160px; opacity: 1; }
}

/* Ultra Glass Card */
.ultra-glass-card {
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: all 0.6s ease;
  overflow: hidden;
}
.ultra-glass-card::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:25px;
  padding:2px;
  background: linear-gradient(135deg,#20a4e4,#20a4e4,#20a4e4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.ultra-glass-card:hover {
  transform: scale(1.07) translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* Icon background */
.icon-wrap {
  width:100px; height:100px; border-radius:50%;
  margin:auto;
  display:flex; align-items:center; justify-content:center;
  background: radial-gradient(circle at top left,#20a4e4,#20a4e4);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, background 0.5s ease;
}
.ultra-glass-card:hover .icon-wrap {
  transform: rotate(20deg) scale(1.3);
  background: radial-gradient(circle at bottom right,#20a4e4,#20a4e4,#20a4e4);
}

/* Floating shapes */
.floating-shape {
  position:absolute;
  z-index:0;
  animation: floatAnim 6s ease-in-out infinite alternate;
  filter: blur(50px);
}
@keyframes floatAnim {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-30px) translateX(20px); }
}

/* Staggered fade-in-up animation */
.fade-in-up {
  opacity:0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
}
.fade-in-up:nth-child(1){animation-delay:0s;}
.fade-in-up:nth-child(2){animation-delay:0.1s;}
.fade-in-up:nth-child(3){animation-delay:0.2s;}
.fade-in-up:nth-child(4){animation-delay:0.3s;}
.fade-in-up:nth-child(5){animation-delay:0.4s;}
.fade-in-up:nth-child(6){animation-delay:0.5s;}
@keyframes fadeUp {
  to { opacity:1; transform: translateY(0); }
}

/* CTA SECTION */
.cta-section {
  position: relative;
  background: #20a4e4; /* YOUR PRIMARY COLOR */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  /*border-radius: 15px;*/
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: 50px auto;
}

/* Decorative Gradient Glow */
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: shine 6s infinite linear;
  z-index: 1;
}
@keyframes shine {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CTA Title */
.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-in-out;
}

/* CTA Subtitle */
.cta-subtitle {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 25px;
  color: #f1f1f1;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Buttons */
.cta-buttons .btn {
  font-size: 1.1rem;
  padding: 12px 35px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

/* CTA buttons adjustment */
@media (min-width:768px){
    .getFree{
        margin-right:30px;
    }
}

@media (max-width:767px){
    .exploreServices{
        margin-top:30px !important;
    }
}

/* Light Button */
.btn-light {
  background-color: #fff;
  color: #20a4e4;
  border: none;
  font-weight: bold;
}
.btn-light:hover {
  background-color: #f1f1f1;
  color: #0056b3;
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Outline Button */
.btn-outline-light {
  color: #fff;
  border: 2px solid #fff;
  font-weight: bold;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: #007BFF;
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Success Badge */
.cta-badge {
  display: inline-block;
  background: #fff;
  color: #20a4e4;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}
.cta-badge i {
  color: #FFD700;
  margin-right: 8px;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .cta-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 85%;
  }
}

.testimonial-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #f8f9fc;
        position: relative;
        font-family: 'Segoe UI', sans-serif;
    }

    /* Header */
    .testimonial-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #20a4e4;
        margin-bottom: 5px;
    }
    .testimonial-header p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    /* Slider Wrapper */
    .testimonial-slider {
        max-width: 600px;
        margin: auto;
        overflow: hidden;
        position: relative;
        border-radius: 12px;
    }

    .testimonial-wrapper {
        display: flex;
        transition: transform 0.6s ease-in-out;
        width: 100%;
    }

    /* Cards */
    .testimonial-card {
        min-width: 100%;
        background: #fff;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        border: 2px solid #20a4e4;
        border-radius: 12px;
        box-sizing: border-box;
        text-align: center;
    }

    .testimonial-card p {
        font-style: italic;
        color: #333;
        margin-bottom: 20px;
    }

    /* Client Info */
    .client-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .client-info img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid #20a4e4;
        margin-bottom: 8px;
    }

    .client-info h3 {
        font-size: 18px;
        color: #20a4e4;
        font-weight: bold;
    }

    .client-info span {
        font-size: 13px;
        color: #555;
    }

    /* Indicators */
    .testimonial-indicators {
        margin-top: 15px;
    }
    .dot {
        height: 10px;
        width: 25px;
        margin: 0 5px;
        display: inline-block;
        background-color: #bbb;
        border-radius: 5px;
        transition: background-color 0.3s;
        cursor: pointer;
    }
    .dot.active {
        background-color: #20a4e4;
        width: 35px;
    }

    /* Navigation */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }
    .testimonial-nav button {
        background-color: #20a4e4;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s;
    }
    .testimonial-nav button:hover {
        background-color: #148ac3;
    }

/* Section Background */
.quote-touch-section {
  background: linear-gradient(135deg, #f7f9fb 0%, #eaf7ff 100%);
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

/* Main Container */
.quote-touch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

/* Quote Box */
.quote-box {
  background: #ffffffd1;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Quote Header */
.quote-header {
  text-align: center;
  margin-bottom: 25px;
}
.quote-header h2 {
  color: #20a4e4;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: bold;
}
.quote-header p {
  font-size: 15px;
  color: #555;
}

/* Quote Form */
.quote-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form-group {
  flex: 1 1 calc(50% - 10px);
}
.form-group.full-width {
  flex: 1 1 100%;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: #333;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #20a4e4;
  box-shadow: 0 0 8px rgba(32, 164, 228, 0.3);
  outline: none;
}

/* Submit Button */
.quote-btn {
  width: 100%;
  padding: 14px;
  background: #20a4e4;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(32, 164, 228, 0.3);
  transition: all 0.3s ease;
}
.quote-btn:hover {
  background: #178bc4;
  box-shadow: 0 8px 20px rgba(32, 164, 228, 0.4);
  transform: translateY(-2px);
}

/* Contact Box */
.contact-box {
  background: #ffffffd1;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.contact-box h2 {
  color: #20a4e4;
  font-size: 28px;
  margin-bottom: 10px;
}
.contact-box p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.info-item i {
  background: #20a4e4;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(32, 164, 228, 0.3);
}
.info-item h4 {
  font-size: 16px;
  margin: 0;
  color: #222;
}
.info-item p {
  color: #555;
  margin: 2px 0 0;
  font-size: 14px;
}

/* Social Links */
.social-links1 {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social-links1 a {
  background: #20a4e4;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(32, 164, 228, 0.3);
  text-decoration:none;
}
.social-links1 a:hover {
  background: red;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .quote-touch-container {
    grid-template-columns: 1fr;
  }
}

/* Footer Base */
.digiconsult-footer {
  position: relative;
  background: linear-gradient(135deg, #0d3b66, #20a4e4);
  color: #fff;
  padding: 70px 20px 25px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Floating Decorative Shapes */
.shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  animation: floatShape 10s infinite ease-in-out;
}
.shape1 { top: -100px; left: -120px; background: rgba(255, 255, 255, 0.1); }
.shape2 { bottom: -140px; right: -150px; background: rgba(255, 255, 255, 0.08); }
.shape3 { top: 30%; left: 50%; background: rgba(255, 255, 255, 0.06); }

/* Shapes Animation */
@keyframes floatShape {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 2;
}

/* Company Info */
.footer-col.company-info p {
  color: #e8e8e8;
  margin: 15px 0;
  line-height: 1.7;
}
.footer-logo img {
  max-width: 200px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* Column Titles */
.footer-col h4 {
  font-size: 19px;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 50px;
  background: #ffcd3c;
  border-radius: 5px;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin: 12px 0;
}
.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffcd3c;
  transform: translateX(5px);
}

/* Contact Info */
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4e4e4;
  margin-bottom: 10px;
}
.subscribe-form {
  display: flex;
  margin-top: 15px;
  background: #fff;
  border-radius: 25px;
  padding: 3px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.subscribe-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}
.subscribe-form button {
  background: #20a4e4;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 25px;
}
.subscribe-form button:hover {
  background: #0d3b66;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.social-links a {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  text-decoration:none;
}
.social-links a:hover {
  background: #ffcd3c;
  color: #0d3b66;
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p {
  color: #ddd;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

 /* 🌟 Scroll to Top Button Styling */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #20a4e4; /* Primary Color */
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(32, 164, 228, 0.4);
  display: none; /* Hidden by default */
  transition: all 0.4s ease;
}

/* Hover Effect */
#scrollTopBtn:hover {
  background: #178bc4;
  box-shadow: 0 10px 30px rgba(32, 164, 228, 0.5);
  transform: scale(1.1) rotate(10deg);
}

/* Add a glowing pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 164, 228, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(32, 164, 228, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 164, 228, 0);
  }
}

#scrollTopBtn.show {
  display: block;
  animation: pulseGlow 2s infinite;
}

/* ================= PROJECTS SECTION ================= */
.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.project-thumb {
  height: 220px;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.12);
}

.project-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-body h5 {
  font-weight: 700;
  font-size: 18px;
  color: #20a4e4;
  margin-bottom: 10px;
}

.project-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.visit-btn {
  display: inline-block;
  background: linear-gradient(135deg, #20a4e4, #0d6efd);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.visit-btn:hover {
  background: linear-gradient(135deg, #ffd700, #fcb900);
  color: #222;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

  /* -----------------------------
    WHY CHOOSE DIGICONSULT STYLING
  ----------------------------- */
  #why-us-modern {
    position: relative;
    padding: 80px 20px;
    background: #f4f7fa;
    font-family: 'Poppins', sans-serif;
  }

  #why-us-modern .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Section Header */
  #why-us-modern .section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1f3a;
  }

  #why-us-modern .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #5f6f83;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  /* Timeline Layout */
  #why-us-modern .timeline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  #why-us-modern .timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,#20a4e4,#0b6ea8);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 1;
  }

  /* Cards */
  #why-us-modern .timeline-card {
    position: relative;
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 16px 40px rgba(32,164,228,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
  }

  #why-us-modern .timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(32,164,228,0.2);
  }

  #why-us-modern .timeline-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #0b6ea8;
    border-radius: 50%;
    left: -10px;
    transform: translateY(-50%);
    z-index: 3;
  }

  /* Icon Box */
  #why-us-modern .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#20a4e4,#0b6ea8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #why-us-modern .timeline-card:hover .icon-box {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 12px 28px rgba(32,164,228,0.35);
  }

  #why-us-modern .icon-box i {
    color: #fff;
    font-size: 1.5rem;
  }

  /* Card content */
  #why-us-modern .timeline-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 12px;
  }

  #why-us-modern .timeline-card p {
    font-size: 0.95rem;
    color: #5f6f83;
    line-height: 1.6;
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    #why-us-modern .timeline-card {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 767.98px) {
    #why-us-modern .timeline-card {
      width: 100%;
    }

    #why-us-modern .timeline::before {
      display: none;
    }

    #why-us-modern .timeline-card::after {
      left: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
  #why-us-modern .timeline-card {
    width: 100%;
    padding-left: 50px; /* space for the circle */
    position: relative;
  }

  #why-us-modern .timeline-card::after {
    left: 0; /* move to left edge */
    top: 20px; /* place above title */
    width: 15px;
    height: 15px;
    transform: none; /* remove translateY */
  }

  #why-us-modern .timeline::before {
    display: none;
  }
}
