/*
Theme Name: Cirrolink
Theme URI: https://cirrolinksolutions.com
Author: Cirrolink
Author URI: https://cirrolinksolutions.com
Description: v
Version: 1
License: GNU General Public License v2 or later
Text Domain: Cirrolink
Tags: Cirrolink

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* Service Card Container */
/* Service Card Container */
/* Make all carousel items equal height */
#services-carousel .owl-stage {
    display: flex !important;
}

#services-carousel .owl-item {
    display: flex;
    height: auto !important;
}

.service-card {
    flex: 1;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    
    background: linear-gradient(145deg, #ffffff, #f7f9ff);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(230, 235, 250, 0.7);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border-color: rgba(150, 170, 255, 0.6);
}

/* Decorative light glow on hover */
.service-card:hover::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(110, 140, 255, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

/* Icon container */
.service-icon-wrap {
    width: 95px;
    height: 95px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: #f1f4ff;
    border-radius: 50%;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    z-index: 2;
}

.service-card:hover .service-icon-wrap {
    background: #e5ebff;
    transform: scale(1.05);
}

/* Icon */
.service-icon {
    width: 60px;
    height: auto;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(4deg);
}

/* Title */
.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1c1c;
    z-index: 2;
}

/* Description */
.service-desc {
    font-size: 15px;
    color: #5d5d5d;
    line-height: 1.65;
    margin-top: auto;
    z-index: 2;
}
.number-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6ecff, #5854d7);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

/* Glow on hover */
.service-card:hover .number-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(120, 140, 255, 0.25);
}

/* Number style */
.service-number {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e92;
    position: relative;
    z-index: 3;
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Hover animation */
.service-card:hover .service-number {
    transform: translateY(-4px);
    color: #4156d8;
}




/* Section padding */
.about-section {
    padding: 90px 0;
}

/* Title and text styling */
.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Image styling */
.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: all .4s ease;
    transform: translateY(0);
}

/* Hover lift */
.about-image-wrap:hover .about-image {
    transform: translateY(-8px);
    box-shadow: 0 35px 75px rgba(0,0,0,0.20);
}

/* Subtle glow behind the image */
.about-image-wrap::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -25px;
    width: 160px;
    height: 160px;
    background: rgba(130, 150, 255, 0.25);
    border-radius: 50%;
    filter: blur(45px);
    z-index: -1;
}

/* Subtitle refinement */
.about-content .subtitle {
    color: #4f5fc0;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-title {
        font-size: 32px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-image {
        margin-top: 30px;
    }
}




/* ===========================
   PREMIUM DARK FOOTER
=========================== */

.footer-premium {
    background: #0d0f1a;
    color: #d5d8e6;
    padding: 80px 0 0;
    position: relative;
}

/* Logo */
.footer-logo {
    width: 170px;
    filter: brightness(1.1);
}

/* Business short description */
.footer-about {
    font-size: 15px;
    line-height: 1.7;
    color: #aeb4c7;
    max-width: 380px;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #516bff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #bfc4d8;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-links a:hover {
    padding-left: 6px;
    color: #ffffff;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;

    background: rgba(255,255,255,0.05);
    border-radius: 50%;

    color: #ffffff;
    margin-right: 8px;
    transition: all .3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: #516bff;
    transform: translateY(-5px);
}

/* Contact Blocks */
.footer-contact-block {
    margin-bottom: 18px;
}

.footer-contact-block .label {
    font-size: 13px;
    opacity: .6;
}

.footer-contact-block .value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 50px;
    padding: 18px 0;
    background: #0a0b14;
    font-size: 14px;
    color: #7d8294;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-premium {
        padding: 50px 0 0;
    }
    .footer-title {
        margin-top: 30px;
    }
}
.footer-menu-bar {
    padding: 18px 0;
    background: #0a0c18;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.footer-menu-bar ul {
    padding: 0;
    margin: 0;
}

.footer-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 22px;
    list-style: none;
}

.footer-links-horizontal li {
    margin: 0;
}

.footer-links-horizontal a {
    color: #bfc4d8;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
}

.footer-links-horizontal a:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* Desktop - Horizontal Menu */
.footer-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Menu Links */
.footer-links-horizontal a {
    color: #bfc4d8;
    font-size: 15px;
    text-decoration: none;
    transition: .3s ease;
}

.footer-links-horizontal a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================
   RESPONSIVE FIX (Mobile)
============================ */
@media (max-width: 768px) {

    .footer-menu-bar {
        padding: 20px 0;
    }

    .footer-links-horizontal {
        flex-direction: column; /* stack vertically */
        gap: 12px;
        text-align: center;
    }

    .footer-links-horizontal li {
        width: 100%;
    }

    .footer-links-horizontal a {
        display: inline-block;
        font-size: 16px;
    }
}
/* =============================
   WHY CHOOSE US – PREMIUM DARK STYLE
============================= */

.why-choose-section {
    padding: 100px 0;
    background: #0d0f1a !important;
    position: relative;
}

/* Section Title */
.why-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

/* Why item container */
.why-item {
    display: flex;
    gap: 25px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all .3s ease;
    position: relative;
}

/* Hover effect */
.why-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Icon box */
.why-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #516bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(81, 107, 255, 0.4);
    transition: all .3s ease;
}

/* Icon hover glow */
.why-item:hover .why-icon {
    background: #6e82ff;
    box-shadow: 0 8px 18px rgba(110, 130, 255, 0.45);
}

/* Text */
.why-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.why-content p {
    font-size: 15px;
    color: #d4d7e2;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-icon {
        margin-bottom: 10px;
    }

    .why-title {
        font-size: 28px;
    }
}

header.smaller{
        background: #5854d7 !important;
}
header.header-mobile{
    background: #5854d7 !important;
}


