/*
Minimal custom CSS to style the logo icon and the CTA button,
as the rest is handled by Bootstrap classes.
*/

/* Custom Logo Icon Styling */
.logo-icon {
    /* Styles to mimic the blue icon circle */
    background-color: #1a73e8; /* Blue color */
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%; /* Make it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    /* Use an actual image tag or SVG for a cleaner icon implementation */
}

/* Custom CTA Button Styling */
.cta-button {
    /* Primary blue button style with gradient and shadow to match the image */
    background: linear-gradient(180deg, #4285f4 0%, #1a73e8 100%);
    color: white;
    /* Overrides Bootstrap's default btn styles for a specific shadow/feel */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); 
    border: none;
    transition: all 0.2s;
}

.cta-button:hover {
    /* Slightly darker effect on hover */
    background: linear-gradient(180deg, #1a73e8 0%, #0c6ad9 100%);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    color: white; /* Keep text white on hover */
}

/* Custom Link Color Adjustment */
/* Using a more specific selector to ensure the gray links match the image */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: +999;
    background-color: white;
}
.img-fluid-logo,.img-fluid2{
    filter: brightness(150%) !important;
}

.navbar-nav li a {
    position: relative;
    /* text-shadow: 0 8px 16px rgb(156, 99, 206); */

    font-weight: 500;
    transition: .5s;
    padding: 0px 20px !important;

    &:hover {
        background: linear-gradient(to right, #005ee2, #9100f1, #ce0aff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* for firefox  */
        color: transparent;
        transform: scale(1.01);
    }
}

.navbar-nav li a::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent-glow);
    transition: .5s linear;
    margin: 0px 0px -10px 0px;
    display: inline-block;
}

.navbar-nav li a:hover:before {
    width: 100%;
}

@media (max-width:768px) {
    .navbar-nav li a::before {
        position: absolute;
        content: '';
        height: 2px;
        width: 0%;
        bottom: 0;
        left: 0;
        background-color: var(--color-accent-glow);
        transition: .5s linear;
        margin: 0px 0px -1px 0px;
        display: inline-block;
    }

    .navbar-nav li a:hover:before {
        width: 30%;
    }
}

.dropdown-menu {
    border-radius: 0px !important;
    border: 2px solid rgba(134, 134, 245, 0.151) !important;
}

.dropdown-menu li {
    padding: 0px 0px 15px 0px;

}

.dropdown-menu li a {
    text-decoration: none;
    
    &:hover {
        background-color: rgba(245, 239, 255, 0.384);
    }
}




.nav-btn {
    border-radius: 5px;
    padding: 10px 15px !important;
    background-color: transparent;
    border: 2px solid #005ee2;
    outline: none;
    color: #005ee2;
    transition: 1s;
    &:hover{
        color: white;
        background-color: #005ee2;
    }
}

@media (max-width:768px) {
    .nav-btn {
        margin-bottom: 20px;
    }

    .nav-item {
        margin: 10px 0px !important;

    }

}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown .dropdown-menu {
        display: none;
        transition: display 0.5s ease-in-out;
    }


    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(-180deg);
        transition: transform 0.5s;
    }
}
.contact-btn{
    background-color: #005ee2;
    border: 2px solid #005ee2;
    color: white;
    padding: 10px;
    border-radius: 10px;
}






 /* ---------------------------------------------------- */
        /* 1. SCROLL ANIMATION SETUP */
        /* ---------------------------------------------------- */
        
        /* Initial state: invisible and slightly moved down */
        .animate-on-scroll {
            opacity: 0;
            transform: rotateY(290deg);
            /* Smooth transition for opacity and movement */
            transition: opacity 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }
        
        /* Target state (when visible): fully visible and in place */
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for sequential animation effect */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }




        
        /* ---------------------------------------------------- */
        /* 2. PROVIDED HERO SECTION STYLES */
        /* ---------------------------------------------------- */
        .hero-section {
            min-height: 100vh; /* Full viewport height */
            padding-top: 30px; 
            padding-bottom: 80px;
            position: relative;
            overflow: hidden; 
        }

        .hero-section .container {
            z-index: 1; 
            position: relative;
        }

        /* UI/UX Tag */
        .ui-ux-tag {
            display: inline-flex;
            align-items: center;
            background-color: #e0ecff; 
            color: #4285f4; 
            padding: 2px 18px; /* Adjusted padding slightly */
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9em;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
        }

        /* Hero Title */
        .hero-title {
            font-family: 'Montserrat', sans-serif; 
            font-size: 3.8em; 
            font-weight: 800; 
            line-height: 1.1;
            color: #2c3e50; 
            margin-bottom: 25px;
        }

        .hero-title .highlight-text {
            color: #4285f4; 
        }

        /* Hero Description */
        .hero-description {
            font-size: 1.15em;
            color: #6c757d;
            max-width: 550px; 
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 992px) {
            .hero-description {
                margin-left: 0; 
                margin-right: 0;
            }
        }

        /* Custom Buttons */
        .custom-btn-primary {
            background: linear-gradient(180deg, #4285f4 0%, #1a73e8 100%);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
            text-decoration: none; /* Ensure link decoration is removed */
        }
        .custom-btn-primary:hover {
            background: linear-gradient(180deg, #1a73e8 0%, #0c6ad9 100%);
            box-shadow: 0 6px 15px rgba(26, 115, 232, 0.4);
            color: white;
            transform: translateY(-2px); 
        }

        .custom-btn-outline {
  background-color: transparent;
  border: 2px solid #e0e0e0;
  color: #6c757d;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Gradient border (invisible by default) */
.custom-btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px; /* border width */
  background: linear-gradient(90deg, #4285f4, #00c6ff, #23d5ab, #ff7e5f, #4285f4);
  background-size: 500% 500%;
  animation: borderMove 3s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: -1;
}

/* Hover पर border दिखे और animate हो */
.custom-btn-outline:hover::before {
  opacity: 1;
}

/* Button hover effect */
.custom-btn-outline:hover {
  color: #4285f4;
  background-color: rgba(66, 133, 244, 0.05);
  border: 2px solid white;
}

/* Animation keyframes */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





        /* Stats Row */
        .stats-row {
            margin-top: 40px;
            color: #333;
        }
        .stat-number {
            font-size: 2.2em;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 0.9em;
            color: #6c757d;
            margin-bottom: 0;
        }
        .stats-row > div:not(:last-child) {
            border-right: 1px solid #e0e0e0; 
            padding-right: 25px;
            margin-right: 25px;
        }
        @media (max-width: 767.98px) {
            .stats-row > div:not(:last-child) {
                border-right: none; 
                padding-right: 0;
                margin-right: 0;
            }
            .stats-row .col-md-4:not(:last-child) {
                /* border-bottom: 1px solid #e0e0e0; */
                padding-bottom: 15px;
            }
        }


        /* --- Hero Illustration Placeholder (Right Side) --- */
        
        /* Floating animation for the mockup container */
        @keyframes mockup-float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0); }
        }

        .hero-illustration-container {
             animation: mockup-float 6s ease-in-out infinite;
        }
        
        .hero-illustration {
            position: relative;
            width: 100%;
            max-width: 500px; 
            height: 380px; 
            margin: 0 auto; 
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mockup-bg {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02); 
            width: 90%;
            height: 90%;
            position: relative;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mockup-header {
            display: flex;
            gap: 7px;
            margin-bottom: 15px;
        }
        .mockup-header .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .mockup-header .red { background-color: #ff605c; }
        .mockup-header .yellow { background-color: #ffbd44; }
        .mockup-header .green { background-color: #00ca4e; }

        .mockup-line {
            background-color: #eef2f8; 
            border-radius: 3px;
            height: 12px;
        }
        .mockup-line.short { width: 40%; margin-bottom: 10px;}
        .mockup-line.medium { width: 70%; margin-bottom: 15px;}
        .mockup-line.long { width: 85%; margin-bottom: 10px;}
        .mockup-line.last { width: 60%; margin-bottom: 0;}

        .mockup-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            flex-grow: 1; 
            margin-bottom: 15px;
        }
        .mockup-grid-item {
            background-color: #f6f8fb; 
            border-radius: 8px;
            height: 90px;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03); 
        }


        /* Floating Shapes - Added rotation and updown to the existing animation */
        @keyframes updown-and-rotate {
            0% { transform: translateY(30px) rotate(30deg); }
            50% { transform: translateY(-30px) rotate(35deg); }
            100% { transform: translateY(30px) rotate(30deg); }
        }

        .shape-top-right, .shape-bottom-left {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 20px; 
            filter: blur(20px); 
            opacity: 0.8;
            z-index: 0;
        }

        .shape-top-right {
            background: linear-gradient(45deg, #4285f4, #6699ff); 
            top: 5%;
            right: 0%; 
            animation: updown-and-rotate 7s linear infinite alternate;
        }

        .shape-bottom-left {
            background: linear-gradient(45deg, #ff66a4, #ff99c4); 
            bottom: 0%; 
            left: 5%;
            animation: updown-and-rotate 9s linear infinite alternate reverse;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 3em;
            }
            .hero-illustration {
                margin-top: 50px;
                height: 300px; 
                max-width: 400px;
            }
            .shape-top-right, .shape-bottom-left {
                width: 60px;
                height: 60px;
                filter: blur(15px);
            }
            .stats-row {
                justify-content: center !important;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2.5em;
            }
            .hero-description {
                font-size: 1em;
            }
            .hero-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            .stats-row .col-md-4 {
                flex-grow: 1; 
                max-width: none; 
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2em;
            }
            .custom-btn-primary, .custom-btn-outline {
                width: 100%;
                justify-content: center; 
            }
            .hero-illustration {
                height: 250px;
            }
        }

@media (max-width:768px) {
    .delay-6{
        display: none;
    }
}











 @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-5px) scale(1.1);
            }
        }

        /* --- SCROLL ANIMATION CLASSES --- */
        
        /* Initial state: invisible and slightly moved down, with smooth transition */
        /* .animate-on-scroll {
            opacity: 0;
            transform: rotateY(290px);
            transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        } */
        
        /* Target state (when visible): fully visible and in place */
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Custom Styling from User --- */
        .icon-wrapper {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 1.3s ease-out; 
        }

        .services-section{
            margin-top: -50px !important;
        }
        /* Applying the Icon Bounce on Card Hover */
        .custom-card:hover .icon-wrapper {
            animation: iconBounce 1.3s ease-in-out;
        }
        
        /* Custom background colors matching the image */
        .blue-bg { background-color: #4a8cff; }
        .purple-bg { background-color: #9c5ff5; }
        .pink-bg { background-color: #ff689e; }
        .orange-bg { background-color: #ff9800; }
        .green-bg { background-color: #4CAF50; }

        /* Styling for the card component */
        .custom-card {
            border-radius: 16px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: transform 1.3s, box-shadow 0.3s;
            /* Removed fixed entrance animation, now controlled by JS/classes */
        }

        .custom-card:hover {
            transform: translateY(-8px); 
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
        }

        /* Styling for the "Our Services" badge */
        .custom-badge {
            padding: 0.5em 1.5em; 
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }


















        /* .animate-on-scroll {
            opacity: 0;
            transform: rotateY(290px);
            transition: opacity 2s ease-out, 
                        transform 2s ease-out;
            will-change: opacity, transform;
        }
         */
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Custom Styling from User --- */

        .portfolio-badge {
            padding: 0.5em 1.5em; 
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Styling for the individual portfolio item container */
        .portfolio-item {
            display: flex;
            flex-direction: column;
            border: 1px solid rgb(228, 228, 228);
            padding: 10px;
            border-radius: 12px; /* Increased border radius for modern look */
            transition: transform 1.3s ease, box-shadow 0.3s ease;
        }

        /* Subtle lift and stronger shadow on hover */
        .portfolio-item:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
            transform: translateY(-5px);
        }

        /* Styling for the colorful square placeholder */
        .color-box {
            width: 100%;
            padding-bottom: 75%; 
            margin-bottom: 1.5rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 1.3s ease;
            cursor: pointer;
        }

        /* Styling for the icon and text inside the overlay */
        .view-icon {
            font-size: 2.5rem; /* Slightly larger icon */
            margin-bottom: 0.5rem;
        }

        .view-text {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .portfolio-item:hover .overlay {
            opacity: 1;
        }

        /* Custom colors matching the image (Gradients kept) */
        .blue-bg { background: linear-gradient(135deg, #4c91ff, #3857ff); }
        .purple-bg { background: linear-gradient(135deg, #ac6bff, #8a4dff); }
        .pink-bg { background: linear-gradient(135deg, #ff68a5, #ff3c8f); }
        .green-bg { background: linear-gradient(135deg, #37e891, #1ecb68); }
        .orange-bg { background: linear-gradient(135deg, #ffb35e, #ff8c38); }
        .teal-bg { background: linear-gradient(135deg, #38c4c4, #2c8e8e); }

        /* Project Category Text */
        .project-category {
            font-size: 0.8rem; /* Slightly adjusted font size */
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Project Description */
        .project-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1; /* Ensures consistency in height before tags */
        }

        /* Tag styling */
        .tags-group {
            margin-top: 0.5rem;
        }

        .project-tag {
            display: inline-block;
            background-color: #e9ecef;
            color: #495057;
            padding: 0.25rem 0.6rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem; /* Slightly smaller tag font */
            font-weight: 500;
        }










.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* -------------------------------------------------------------------------- */
        /* USER-PROVIDED STYLES */
        /* -------------------------------------------------------------------------- */
        .custom-badge {
            padding: 0.5em 1.5em; 
            border-radius: 50px; 
            font-size: 0.85rem;
            font-weight: 600;
        }

        .custom-gradient-bg {
            /* Ensuring card is centered and doesn't stretch too wide */
            margin-left: auto;
            margin-right: auto;
            
            background: linear-gradient(180deg, rgba(235, 240, 255, 0.5), rgb(236, 236, 236));
            border-radius: 1.5rem; 
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
            border: none;
        }

        /* Quote Icon */
        .quote-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #a77dff, #6b4cff); 
            color: white;
            font-size: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Star Rating */
        .star-rating .checked, 
        .star-rating .bi-star-fill:not(.text-secondary) {
            color: gold; 
            font-size: 1.25rem;
            margin: 0 1px;
        }


        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #495057; 
        }

        /* Client Avatar */
        .client-avatar-wrapper {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #a77dff, #6b4cff); 
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 0.8rem;
        }

        /* Navigation Arrow Buttons */
        .custom-control-prev,
        .custom-control-next {
            width: 45px; 
            height: 45px;
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #495057;
            cursor: pointer;
            transition: all 0.2s;
            outline: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            /* Resetting Bootstrap carousel button positioning */
            position: static; 
            transform: none;
        }

        .custom-control-prev:hover,
        .custom-control-next:hover {
            background-color: #f0f0f0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Indicator Dots Styling (Overriding Bootstrap defaults) */
        #testimonialCarousel .carousel-indicators button {
            width: 8px;
            height: 8px;
            padding: 0; 
            margin: 0 4px; 
            border: none;
            border-radius: 50%;
            background-color: #ccc;
            opacity: 1; 
            transition: background-color 0.3s, transform 0.3s;
            text-indent: 0; 
        }

        #testimonialCarousel .carousel-indicators button.active {
            background-color: #6b4cff; /* Active dot color (purple) */
            transform: scale(1.2);
        }
        
        .testimonial-focus-section{
            margin-top: -100px;
        }












.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* -------------------------------------------------------------------------- */
        /* CUSTOM PROCESS SECTION STYLES (from user) */
        /* -------------------------------------------------------------------------- */
        .work-process-section { 
            padding: 80px 0; /* Adjusted padding */
            background-color: #f8f9fa; 
        }

        .process-tag-label { 
            display: inline-block;
            background-color: #e0f2fe; 
            color: #2196f3; 
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .process-main-heading { 
            font-size: 2.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }
        .process-sub-heading { 
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 50px;
        }

        /* Card Styling */
        .process-step-card { 
            background-color: #fff;
            border-radius: 15px;
            padding: 25px 20px; 
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 1.3s ease, box-shadow 0.3s ease;
            height: 100%;
            text-align: center; 
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .process-step-card:hover {
            transform: translateY(-8px); /* Deeper lift on hover */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Icon Box */
        .process-step-icon-box { 
            width: 64px; 
            height: 64px;
            border-radius: 50%; /* Changed to circular for better focus */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            background-size: cover;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on icon */
        }
        .process-step-icon-box i { color: white; font-size: 24px; }

        /* Color definitions */
        .step-color-1 { background-image: linear-gradient(135deg, #6C63FF, #504DFF); box-shadow: 0 4px 12px rgba(108, 99, 255, 0.5); }
        .step-color-2 { background-image: linear-gradient(135deg, #A855F7, #9333EA); box-shadow: 0 4px 12px rgba(168, 85, 247, 0.5); }
        .step-color-3 { background-image: linear-gradient(135deg, #EC4899, #DB2777); box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5); }
        .step-color-4 { background-image: linear-gradient(135deg, #FF7B00, #F75A00); box-shadow: 0 4px 12px rgba(255, 123, 0, 0.5); }
        .step-color-5 { background-image: linear-gradient(135deg, #2ED344, #1DB954); box-shadow: 0 4px 12px rgba(46, 211, 68, 0.5); }

        /* Step Number */
        .process-number-label { 
            font-size: 0.85rem;
            font-weight: 600;
            color: #6c757d;
            background-color: #f0f0f0;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            display: inline-block;
        }

        /* Card Title and Text */
        .process-step-title { 
            font-size: 20px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .process-card-description { 
            font-size: 15px; /* Slightly reduced for compact design */
            color: #495057;
            line-height: 1.4;
            flex-grow: 1;
        }
        
        /* Centering content for larger screens */
        .container-fluid {
            max-width: 1400px;
        }

        
















.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* -------------------------------------------------------------------------- */
        /* USER-PROVIDED & ADJUSTED STYLES */
        /* -------------------------------------------------------------------------- */
        .contact-badge {
            padding: 0.5em 1.5em; 
            border-radius: 50px; 
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* General Card Styling for forms and details */
        .contact-form-card,
        .contact-detail-card,
        .map-card {
            border-radius: 1rem; /* Slightly rounded corners for cards */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
            border: none;
        }

        /* Form input and textarea styling */
        .form-control {
            border-radius: 0.5rem; /* Slightly rounded input fields */
            padding: 0.75rem 1rem;
            border-color: #e0e0e0; /* Lighter border color */
        }

        .form-control:focus {
            border-color: #86b7fe; /* Bootstrap primary focus color */
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        /* Custom Send Message Button */
        .custom-send-btn {
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: bold;
            background-color: #0d6efd; /* Bootstrap primary blue */
            border-color: #0d6efd;
            transition: background-color 0.2s, border-color 0.2s;
        }

        .custom-send-btn:hover {
            background-color: #0b5ed7; /* Darker blue on hover */
            border-color: #0a58ca;
        }

        /* Contact Detail Icon Wrappers (Email, Call, Visit) */
        .detail-icon-wrapper {
            width: 45px;
            height: 45px;
            border-radius: 12px; /* Rounded corners */
            color: white;
            font-size: 1.25rem;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        }

        .blue-bg {
            background-color: #4a8cff; /* Email */
        }

        .purple-bg {
            background-color: #9c5ff5; /* Call */
        }

        .pink-bg {
            background-color: #ff689e; /* Visit */
        }

        /* Map Card and Icon Styling */
        .map-card {
            /* Gradient background for the map card */
            background: linear-gradient(135deg, rgba(235, 240, 255, 0.5), rgba(255, 255, 255, 1));
            display: flex; 
            align-items: center;
            justify-content: center;
            min-height: 200px; 
            /* Ensure it takes up available height in the column */
            flex-grow: 1; 
        }

        .map-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 50%; /* Circular icon for map */
            background: linear-gradient(135deg, #a77dff, #6b4cff); /* Purple gradient */
            color: white;
            font-size: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }








.footer-section {
    background-color: #f8f9fa; /* Light background color similar to the section backgrounds */
    border-top: 1px solid #e9ecef; /* Light border on top */
}

/* Logo Icon Styling (Placeholder for the small blue icon) */
.footer-logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px; /* Slightly rounded square */
    background-color: #0d6efd; /* Bootstrap primary blue */
    color: white;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling for the footer headings */
.footer-heading {
    font-size: 1.15rem;
    color: #343a40; /* Darker text for headings */
}

/* Styling for the list links */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: #6c757d !important; /* Ensure links are muted grey */
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0d6efd !important; /* Blue on hover */
}

/* Styling for the circular social media dots */
.social-dot {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ced4da; /* Light grey for the dots */
    cursor: pointer;
    transition: background-color 0.2s;
}

.social-dot:hover {
    background-color: #0d6efd; /* Blue on hover */
}

/* Separating the main content from the copyright line */
.footer-bottom-line {
    border-top: 1px solid #e9ecef;
    margin-top: 0;
    padding-top: 1.5rem !important;
}