/********** Template CSS **********/
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}
body {
    overflow-x: hidden;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.btn-custom {
    padding: 12px 25px;
    background-color: #ff800f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-custom:hover {
        background-color: white;
        color: #ff800f;
        border: 1px solid #ff800f;
    }

/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 90px;
    height: 50px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #226262;
    font-weight: 400;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #226262;
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    position: relative;
    background: white; /* Remove image background */
    overflow: hidden;
}
video {
    transition: all 0.5s ease-in-out;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
.facts {
	position: relative;
}

.facts * {
	position: relative;
	z-index: 1;
}

.facts::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: rgba(1, 10, 53, .8);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text,
.container.quote .quote-form {
	position: relative;
}

.container.quote .quote-text *,
.container.quote .quote-form * {
	position: relative;
	z-index: 1;
}

.container.quote .quote-text::after,
.container.quote .quote-form::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.container.quote .quote-text::after {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form::after {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #7F8499;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #226262;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #226262;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #226262;
    border: 1px solid #10324D ;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: #226262;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #226262;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


/* New  */
.btn-glow {
    padding: 10px 25px;
    border-radius: 50px;
    background: #226262;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

    .btn-glow:hover {
        background: white;
        color: #10324D;
        border: 1px solid #10324D;
    }

/* Animated Logo Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Navbar Link Hover Effect */
.navbar-nav .nav-link {
    position: relative;
    margin: 0 10px;
    transition: color 0.3s;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #ff800f;
        transition: width 0.3s;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
.navbar-toggler {
    border-color: white; /* Border white */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* This will show black color menu icon */
}
/* Floating Decorative Circles */
    .floating-circle {
        width: 150px;
        height: 150px;
        background: rgba(255, 128, 15, 0.2);
        border-radius: 50%;
        position: absolute;
        animation: floatCircle 8s infinite ease-in-out;
        z-index: 1;
    }

    @keyframes floatCircle {
        0% { transform: translateY(0px); }
        50% { transform: translateY(30px); }
        100% { transform: translateY(0px); }
    }

    /* Image Hover Effect */
    .about-img-effect {
        transition: transform 0.8s ease, box-shadow 0.8s ease;
        border-radius: 20px;
        position: relative;
        z-index: 2;
    }

    .about-img-effect:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* Icon Glowing */
    .icon-glow {
        background: #226262;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 15px #226262;
        transition: 0.4s;
    }

    .icon-glow:hover {
        box-shadow: 0 0 25px #10324D ;
        transform: scale(1.1);
    }

    /* Button Super Style */
    .btn-super {
        background: #ff800f;
        color: white;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.4s ease-in-out;
        z-index: 2;
        position: relative;
    }

    .btn-super:hover {
        background: white;
        color: #ff800f;
        border: 1px solid #ff800f;
    }

    /* Sequential Animation */
    .animate-sequence {
        opacity: 0;
        animation: fadeUp 1s forwards;
    }

    .animate-sequence:nth-child(1) { animation-delay: 0.3s; }
    .animate-sequence:nth-child(2) { animation-delay: 0.6s; }
    .animate-sequence:nth-child(3) { animation-delay: 0.9s; }
    .animate-sequence:nth-child(4) { animation-delay: 1.2s; }
    .animate-sequence:nth-child(5) { animation-delay: 1.5s; }
    .animate-sequence:nth-child(6) { animation-delay: 1.8s; }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Tagline Style */
    .tagline {
        font-size: 1.2rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 600;
    }
.btn-super {
    background: #10324D;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    position: relative;
    display: inline-block;
}

    .btn-super:hover {
        background: white;
        color: #226262;
        border: 3px solid #10324D;
        box-shadow: 0 0 35px #10324D;
        transform: scale(1.05);
    }
/* Facts Style */
/* Floating Circles */
.floating-circle {
    width: 150px;
    height: 150px;
    background: rgba(255, 128, 15, 0.15);
    border-radius: 50%;
    position: absolute;
    animation: floatCircle 8s infinite ease-in-out;
    z-index: 1;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Fact Box Design */
.fact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: #10324D;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 2;
}

    .fact-box:hover {
        background: rgba(255, 128, 15, 0.1);
        box-shadow: #10324D;
        transform: translateY(-10px) scale(1.05);
    }

.fact-title {
    color: white;
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Features */
.text-gradient-custom {
    background: #10324D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-custom {
    background: #226262;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.02);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.floating-icon {
    width: 70px;
    height: 70px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .floating-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.7);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}
/* Quotes*/
/* Input Field Styling */
.custom-input {
    border-radius: 30px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: #f9f9f9 !important;
    transition: 0.3s ease;
}

    .custom-input:focus {
        background-color: #fff !important;
        border: 2px solid #226262 !important;
        box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
    }

/* Submit Button Styling */
.custom-btn {
    background-color: #226262 !important;
    border: none !important;
    color: #fff !important;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .custom-btn:hover {
        background-color: transparent !important;
        color: #10324D !important;
        border: 2px solid #10324D !important;
    }

    /* Ripple Effect (Optional But Looks Premium) */
    .custom-btn::after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        width: 100px;
        height: 100px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.5s;
    }

    .custom-btn:active::after {
        transform: translate(-50%, -50%) scale(3);
        opacity: 1;
        transition: 0s;
    }
    /* Contact Form*/
.premium-input {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    padding-right: 40px !important;
}

    .premium-input:focus {
        border-color: #226262;
        box-shadow: 0 0 10px rgba(106, 17, 203, 0.3);
    }

.premium-btn {
    background: #226262;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

    .premium-btn:hover {
        background: transparent;
        border: 2px solid #10324D;
        color: #10324D;
    }
/* About */
.hover-zoom {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Perfectly shows full image */
    border-radius: 20px;
}

    .hover-zoom:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.image-wrapper {
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

/* Moving Shapes Background */
.moving-shapes .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: float 20s linear infinite;
}

.shape1 {
    width: 200px;
    height: 200px;
    background-color: #ff800f;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 150px;
    height: 150px;
    background-color: #0d6efd;
    top: 50%;
    right: -75px;
    animation-delay: 5s;
}

.shape3 {
    width: 100px;
    height: 100px;
    background-color: #ffc107;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}
/* Features */
/* Moving Background Shapes */
.moving-shapes .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: float 20s linear infinite;
}

.shape1 {
    width: 250px;
    height: 250px;
    background-color: #ff800f;
    top: 10%;
    left: -120px;
    animation-delay: 0s;
}

.shape2 {
    width: 180px;
    height: 180px;
    background-color: #0d6efd;
    top: 50%;
    right: -90px;
    animation-delay: 5s;
}

.shape3 {
    width: 120px;
    height: 120px;
    background-color: #ffc107;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Icon Bounce Animation */
.icon-animated {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Feature Box Hover Effect */
.feature-box:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px #226262;
    transition: all 0.3s ease-in-out;
}

/* Hover Zoom Effect for Image */
.hover-zoom {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .hover-zoom:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

/* Moving Shape Behind Image */
.shape-behind {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #0d6efd;
    border-radius: 50%;
    top: 20%;
    left: -75px;
    opacity: 0.15;
    z-index: 1;
    animation: float-shape 12s linear infinite;
}

@keyframes float-shape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}
/* Price */
/* Ultra Premium Pricing Card Style */
.pricing-card-ultra {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
}

    .pricing-card-ultra:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px #226262;
        border-color: #10324D;
    }

    .pricing-card-ultra h1 {
        font-size: 48px;
    }

.price-gradient {
    background: #226262;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-ultra.active {
    border-color: #10324D;
}

.pricing-card-ultra ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-card-ultra a {
    background-color: #226262;
    border: none;
}

    .pricing-card-ultra a:hover {
        background-color: #10324D;
    }

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #226262;
    color: white;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* Team */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

    .team-card:hover .team-img {
        transform: scale(1.1);
    }

    .team-card:hover .team-social {
        transform: translateY(0);
    }
    
/* FAQ's */
/* Accordion Button (Question Tag) Perfect Styling */
.accordion-button {
    background-color: #fff;
    color: #212529;
    border-radius: 1rem !important;
    font-size: 1.15rem; /* Perfect readable size */
    font-weight: 600; /* Medium bold for premium look */
    padding: 1rem 1.5rem; /* Comfortable padding */
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background-color: #226262;
        color: #fff;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button:hover {
        background-color: #10324D#226262;
    }

    /* Plus/Minus Icon Animation */
    .accordion-button .faq-icon {
        transition: transform 0.3s ease;
        font-size: 1.2rem;
    }

    .accordion-button:not(.collapsed) .faq-icon {
        transform: rotate(45deg);
    }

/* Question Text Perfect Alignment */
.question-tag {
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Accordion Body Text */
.accordion-body {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.25rem 1.5rem;
    color: #555;
}

/* Card Hover Effect */
.faq-card:hover {
    box-shadow: 0 8px 24px rgba(255, 128, 15, 0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.service-item:hover img {
    transform: scale(1.05);
}

.service-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.video-box:hover video {
    transform: scale(1.05);
}
/* Cursor */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    cursor: default; /* Show system cursor */
    background-color: #f0f0f0;
    height: 100vh;
}

/* Blurred Layer (Perfect Size) */
.cursor-blur {
    width: 50px;
    height: 50px;
    background-color: rgba(34, 98, 98, 0.25);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    filter: blur(15px);
    transition: transform 0.1s ease;
}

/* Solid Circle (Perfect Size) */
.cursor-circle {
    width: 35px;
    height: 35px;
    border: 1px solid #226262;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}
/* Snow Container Overlay */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Very Important: Website ke elements par click karne me koi problem na ho */
    z-index: 9999; /* Snow sabse upar dikhe */
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    user-select: none;
    opacity: 0.8;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.2;
    }
}
/* Hover */
/* Navbar link hover color change */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #226262 !important;
}

/* Services dropdown items hover color */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
    background-color: #226262 !important;
    color: #fff !important;
}

a.h4:hover, a.h4:focus {
    color: #10324D !important;
}

/* Jab click kare ya wo active ho to bhi color change ho */
a.h4:active {
    color: #226262 !important;
}


