@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root{
    /* Professional IT Solutions Color Palette */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --tech-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Solid Colors - Professional IT Blue */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #0ea5e9;
    --accent-color2: #06b6d4;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-dark2: #1e293b;
    --bg-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.1);
    --shadow-xl: 0 20px 40px rgba(37, 99, 235, 0.15);
    --shadow-colored: 0 10px 30px rgba(37, 99, 235, 0.25);
    
    /* Fonts */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}
/*** Spinner Start ***/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6,b,small{
    font-family: var(--heading-font) !important;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

a,p,li{
    font-family: var(--body-font) !important;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

.fect-str{
    background: var(--bg-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.fect-str::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.nav-str{
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-str.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.nav-str .navbar-brand h1 {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
}

.nav-str .navbar-brand h1 span{
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.fect-str .row .col-lg-3 h1{
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.fect-str .row .col-lg-3 h5{
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}
.team .btn-square{
    background: var(--bg-gradient);
    color: var(--text-white);
    transition: all 0.3s ease;
    border: none;
}

.team .btn-square:hover{
    background: var(--tech-gradient);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
    color: var(--text-white);
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 55px;
    height: 55px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top:hover{
    background: var(--tech-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    color: var(--text-white);
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar-sec{
    background: var(--bg-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-info small {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
}

.top-info small a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-info small a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.top-info small a i{
    color: var(--accent-color);
    margin-right: 5px;
}

#note small{
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.topbar .top-link a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.topbar .top-link a i{
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.topbar .top-link a:hover i {
    color: var(--text-white);
    transform: scale(1.1);
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 8px;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.08);
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 80%;
}

.call-section a {
    background: var(--bg-gradient);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4); }
}

.call-section a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.call-section a i{
    color: var(--text-white);
    font-size: 1.1rem;
}

.call-section a .position-absolute span {
    background: var(--tech-gradient);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.call-section a .position-absolute span i{
    color: var(--text-white);
    font-size: 0.7rem;
}

.call-section-contant span{
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.call-section-contant span:first-child {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
}

.fact{
    background-color: var(--main1) !important;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-item img,
.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(37 99 235 / 47%) 0%, rgb(30 64 175 / 47%) 100%);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 60px 20px;
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 40px 15px;
    }
}

.carousel-item p {
    max-width: 750px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

@media (max-width: 768px) {
    .carousel-item p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

.carousel-content {
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.carousel-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    color: var(--text-white);
}

.carousel-content h6{
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: inline-block;
    padding: 6px 16px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .carousel-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-content h1 {
        font-size: 1.6rem;
    }
    
    .carousel-content h6 {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}
.carousel-control-prev {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.carousel-control-next {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bg-gradient);
    color: var(--text-white);
    opacity: 1;
    border: 0;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-caption .carousel-content a button.carousel-content-btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-caption .carousel-content a button.carousel-content-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .carousel-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .carousel-caption .carousel-content a button.carousel-content-btn2,
    .carousel-caption .carousel-content a button.carousel-content-btn-outline {
        padding: 10px 28px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
}

.carousel-caption .carousel-content a button.carousel-content-btn2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover::before {
    width: 300px;
    height: 300px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: var(--text-white);
}

#carouselId .carousel-indicators li {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    margin: 10px;
    border-radius: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

#carouselId .carousel-indicators li.active {
    background: var(--accent-color);
    width: 60px;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

#carouselId .carousel-indicators li:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scaleY(1.5);
}

.counter {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.counter:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.counter h1 {
    color: var(--text-white);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.counter h5{
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.project div h5, .about-contant h5,.service-sec div h5,.blog div h5,.client-sec div h5,.team div h5,.con-sec div h5{
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project div h5 i, .about-contant h5 i,.service-sec div h5 i,.blog div h5 i,.client-sec div h5 i,.team div h5 i,.con-sec div h5 i{
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.1rem;
}
.about-contant a{
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
    border: none;
}

.about-contant a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: var(--text-white);
}

.about-sec{
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.about-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.pro-det{
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pro-det::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: all 0.4s ease;
}

.pro-det:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.pro-det:hover::before {
    opacity: 1;
}

.plan-details {
    padding: 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-det ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-det ul li {
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 8px 0;
    padding-left: 35px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pro-det ul li:last-child {
    border-bottom: none;
}

.pro-det ul li:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    padding-left: 40px;
}

.pro-det ul li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 8px;
    background: rgba(37, 99, 235, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pro-det ul li:hover i {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}
@media (max-width: 992px) {
    .carousel-item {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 400px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.project-img {
    position: relative;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 280px;
    background: var(--bg-light);
}

.project-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bg-gradient);
    opacity: 0;
    z-index: 1;
    transition: all 0.4s ease;
    border-radius: 20px;
}
.project-img2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 0px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 20px;
}
.project-img2::after {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 0px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s ease;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.project-content a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 85%;
    text-align: center;
}

.project-content a h4{
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.project-content a p{
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.project-item:hover {
    transform: translateY(-8px);
}

.project-item:hover .project-img {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.project-item:hover .project-img img {
    transform: scale(1.15);
}

.project-item:hover .project-img::before {
    opacity: 0.85;
}

.project-item:hover .project-content {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.project-item:hover .project-content a {
    transform: translateY(0) scale(1);
}

/* Smooth fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}
.project-item:hover .project-img2::before,
.project-item:hover .project-img2::after {
    opacity: 2;
}

.purchase-button {
    margin-top: auto;
    padding: 0;
    margin-top: 15px;
}

.purchase-button a {
    text-decoration: none;
    display: block;
}

.purchase-button a button{
    color: var(--text-white);
    background: var(--bg-gradient);
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 0 0 25px 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.purchase-button a button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.purchase-button a button:hover::before {
    width: 400px;
    height: 400px;
}

.purchase-button a button:hover{
    background: var(--tech-gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
    color: var(--text-white);
    letter-spacing: 2px;
}

.pro-det .plan_heading h4{
    color: var(--text-white);
    font-size: 1.25rem !important;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.pro-det .plan_heading{
    background: var(--bg-gradient);
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.pro-det .plan_heading::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.pro-det .plan_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*** Project End ***/


/*** Blog Start ***/
.blog,.client-sec{
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

/* Modern Blog Card Styles */
.blog .row {
    display: flex;
    align-items: stretch;
}

.blog-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--bg-light);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.blog-read-more-btn {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.blog-card-modern:hover .blog-read-more-btn {
    transform: translateY(0);
}

.blog-read-more-btn:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 15px;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2);
}

.blog-author-details {
    display: flex;
    flex-direction: column;
}

.blog-author-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.2;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 2px;
}

.blog-card-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-modern:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.customer-feedback div h2{
    color: var(--text-primary);
    font-weight: 800;
}
/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 5px solid transparent !important;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
    z-index: 1;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bg-gradient);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

.team-item h4 {
    color: var(--text-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-item:hover h4 {
    color: var(--primary-color);
}

.team-item:hover .team-img img {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-left: 15px;
    background: var(--bg-gradient);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--tech-gradient);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    color: var(--text-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.testimonial-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bg-gradient);
    border-radius: 15px;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-colored);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--bg-gradient);
    border-radius: 20px 20px 0 0;
    z-index: -1;
    opacity: 0.1;
}

.contact-detail1 {
    background: var(--bg-white) !important;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-detail1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-detail1 div h4{
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-detail1 div h4 a, .contact-detail1 div a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-detail1 div h4 a:hover, .contact-detail1 div a:hover{
    color: var(--primary-color);
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.contact-form .sub-button{
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colored);
}

.contact-form .sub-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: var(--text-white);
}

/*** Contact End ***/


/*** Footer Start ***/

.footer{
    background: var(--bg-dark);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
}

.footer .name-com a h1{
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.5rem;
}

.footer .name-com a h1 span{
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.footer .hightech-link a{
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer .hightech-link a:hover{
    background: var(--bg-gradient);
    color: var(--text-white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.footer .sort-li{
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    padding-left: 5px;
}
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

/*** Footer End ***/

.special-button {
        text-transform: uppercase;
        font-weight: 700;
        transition: 0.6s;
        box-shadow: 0px 0px 7px #1f4c65;
      }
      
      .special-button:active {
        scale: 0.92;
      }
      
      .special-button:hover {
        background: rgb(2,29,78);
        background: linear-gradient(270deg,
        rgba(2, 29, 78, 0.681) 0%,
         rgba(31, 215, 232, 0.873) 60%);
        color: rgb(4, 4, 38);
      }
      
      .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        display: inline-block;
        position: relative;
      }
      .section-title:after,
      .section-title:before {
        content: '';
        position: absolute;
        bottom: 0;
      }
      .section-title:after {
        height: 2px;
        background-color: var(--text-color2);
        left: 25%;
        right: 25%;
      }
      
      .section-title:before {
        width: 15px;
        height: 15px;
        border: 3px solid #fff;
        background-color: var(--main-color);
        left: 50%;
        transform: translatex(-50%);
        bottom: -6px;
        z-index: 9;
        border-radius: 50%;
      }
      
      /* CAROUSEL STARTS */
      .customer-feedback .owl-item img {
        width: 85px;
        height: 85px;
      }
      
      .feedback-slider-item {
        position: relative;
        padding: 60px;
        margin-top: -40px;
      }
      
.customer-name {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}
      
      .feedback-slider-item p {
        line-height: 1.875;
      }
      
.customer-rating {
    background: var(--bg-gradient);
    border: 3px solid #fff;
    color: var(--text-white);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 44px;
    font-size: 16px;
    right: 0;
    top: 77px;
    text-indent: -3px;
    box-shadow: var(--shadow-md);
}
      
      .thumb-prev .customer-rating {
        top: -20px;
        left: 0;
        right: auto;
      }
      
      .thumb-next .customer-rating {
        top: -20px;
        right: 0;
      }
      
.customer-rating i {
    color: var(--text-white);
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 12px;
}
      .client-sec div h1{
        color: var(--text-color2);
      }
.rating-sec a h4{
    color: var(--primary-color);
    font-size: 1.3rem !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rating-sec a h4:hover {
    color: var(--accent-color);
}

.rating-sec i{
    color: #fbbf24;
    font-size: 1.1rem;
}
      /* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    top: 103px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    z-index: -1;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feedback-slider-item:hover:after {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}
      
      .thumb-prev,
      .thumb-next {
        position: absolute;
        z-index: 99;
        top: 45%;
        width: 98px;
        height: 98px;
        left: -90px;
        cursor: pointer;
        -webkit-transition: all .3s;
        transition: all .3s;
      }
      
      .thumb-next {
        left: auto;
        right: -90px;
      }
      .feedback-slider-thumb{
        display: none;
      }
      .feedback-slider-thumb img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
      }
      
      .feedback-slider-thumb:hover {
        opacity: .8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
      }
      
      .customer-feedback .owl-nav [class*="owl-"] {
        position: relative;
        display: inline-block;
        bottom: 67px;
        transition: all .2s ease-in;
      }
      
      .customer-feedback .owl-nav i {
        background-color: transparent;
        color: var(--text-color2);
        font-size: 25px;
      }
      
      .customer-feedback .owl-prev {
        left: -15px;
      }
      
      .customer-feedback .owl-prev:hover {
        left: -20px;
      }
      
      .customer-feedback .owl-next {
        right: -15px;
      }
      
      .customer-feedback .owl-next:hover {
        right: -20px;
      }
      
      /* DOTS */
      .customer-feedback .owl-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 35px;
      }
      .customer-feedback .owl-dot {
        display: inline-block;
      }
      
      .customer-feedback .owl-dots .owl-dot span {
        width: 11px;
        height: 11px;
        margin: 0 5px;
        background: #fff;
        border: 1px solid var(--text-color2);
        display: block;
        -webkit-backface-visibility: visible;
        -webkit-transition: all 200ms ease;
        transition: all 200ms ease;
        border-radius: 50%;
      }
      
.customer-feedback .owl-dots .owl-dot.active span {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}
      .client-sec{
        padding: 10px auto !important;
      }
      
      /* RESPONSIVE */
      @media screen and (max-width: 767px) {
        .feedback-slider-item:after {
          left: 30px;
          right: 30px;
        }
        .customer-feedback .owl-nav [class*="owl-"] {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          margin-top: 45px;
          bottom: auto;
        }
        .customer-feedback .owl-prev {
          left: 0;
        }
        .customer-feedback .owl-next {
          right: 0;
        }
        
      }
      
      /* extra */
      .copyright {
        text-align: center;
        margin-top: 30px;
        font-size: 1.6rem;
        background-color: #eee;
      }
      .copyright a {
        display: inline-block;
        padding: 10px 2px;
      }
      .upwork {
        color: #37a000;
      }
      .upwork:after {
        content: '/';
        margin-left: 10px;
      }
      .fiverr {
        color: #1dbf73;
      }
      .copyright .triplebyte {
        display: block;
        padding-top: 0;
        color: #344759;
        text-decoration: underline;
      } 


.links-con li a{
    color: var(--text-color2);
}
.links-con li a:hover{
    color: var(--text-color);
}
.why-choose{
    background-color: var(--main-color);
}
.why-choose h1,.who-we h1{
    color: var(--text-color2);
}
.why-choose h1 span{
    color: var(--text-color);
}
.why-choose ul div i,.why-choose ul div li b{
    color: var(--text-color);
}

.who-we1 .card{
    background-color: var(--main-color) !important;
}
.who-we1 .card .card-body h1 i{
    background-color: var(--text-color2);
}
.who-we1 .card .card-body h5{
    color: var(--text-color2);
}
.sub-button2{
    color: var(--text-color2) !important;
}

.first-sec .sec-s{
    color: var(--text-color2);
}
.first-sec .col-lg-8 h1{
    color: var(--text-color2);
}
.first-sec .col-lg-8 h1 span{
color: var(--text-color);
}
.first-sec .col-lg-8 a{
    background-color: var(--text-color2);
    color: var(--main-color);
}
.first-sec .col-lg-8 a:hover{
    color: var(--text-color2);
    background-color: var(--main-color2);
}
.links-dir,.main-form,.con-det{
    background-color: var(--main-color) !important;
}
.links-dir p a{
    color: var(--text-color2);
}
.links-dir p a:hover{
    color: var(--text-color);
}
.main-form input#name,input#email,input#project,textarea#message{
    /* background-color: var(--main-color2); */
    color: var(--bs-dark);
}
.main-form ::placeholder{
    color: black !important;
}
.main-form .sub-button-done{
    background-color: var(--main-color2);
    color: var(--text-color2);
}
.main-form .sub-button-done:hover{
    color: var(--main-color2);
    background-color: var(--text-color2);
}
.First-con-det{
    background-color: var(--main-color2);
}
.First-con-det i{
    color: var(--main-color);
}
.con-det{
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.con-det h3{
    color: var(--text-color2);
}
.con-det a{
    color: var(--text-color);
    font-size: 16px;
}
.con-det a:hover{
    color: var(--text-color2);
}
.fa-blackboard:before, .fa-chalkboard:before,.fa-indent:before,.fa-share-from-square:before, .fa-share-square:before{
    color: var(--text-color2) !important;
}
.testo-cli{
    background-color: var(--main-color);
}
.testo-cli .feedback-slider-item:after{
    background-color: var(--main-color2) !important;
}
.testo-cli .customer-name{
    color: var(--text-primary);
    font-weight: 700;
}

.testo-cli {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}
.carousel-item h1{
    font-size: 4rem;
    font-weight: 800;
}

@media (max-width: 992px) {
    .carousel-item h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .carousel-item h1 {
        font-size: 2rem;
    }
}
.project1-sec h1{
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project1-sec {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.project1-sec .row {
    margin-top: 40px;
}

/* Service Card Icon Enhancement */
.project-img::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.project-item:hover .project-img::after {
    opacity: 1;
    transform: scale(1.1);
}
.about-contant h1,.service-sec h1{
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-contant p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.customer-feedback div h2,.client-sec div h1,.team h1,.con-sec h1,.blog h1{
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.client-sec, .team, .con-sec, .blog {
    padding: 100px 0;
}
.who-we1 .card .card-body p{
    text-align: justify !important;
}
.about-contant p,.blog .blog-content p,.testimonial-item div p,.name-com p,.why-choose p,.why-choose ul li,.who-we p,.first-sec p{
    text-align: justify !important;
}
.first-sec .py-3{
    text-align: unset !important;
}
#pre-loader{
    background: var(--text-color2) url('/img/comitron_preloader.gif') no-repeat center center;
    background-size:100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1000;
}

@media only screen and (min-width: 320px) and (max-width: 425px) {
    .con-sec{
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }
    .feedback-slider-item p{
        text-align: justify !important;
    }
    .project1{
        padding-top: 0px !important;
    }
.testimonial-cli-rew {
    padding: 100px 0 !important;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}
    .carousel-item h1{
        font-size: 16px !important;
    }
    .carousel-item p{
        font-size: 10px !important;
    }
    .project1 h1,.project1-sec h1{
        font-size: 16px !important;
        line-height: 25px !important;
    }
    .about-contant h1,.service-sec h1{
        font-size: 20px !important;
        line-height: 25px !important;
    }
    .customer-feedback div h2,.client-sec div h1,.team h1,.con-sec h1,.blog h1{
        font-size: 22px !important;
    }
    .contact-detail{
        padding: 0.5rem !important;
      }
      .contact-detail .contact-detail1{
        display: block !important;
        text-align: center;
      }
      .contact-detail .contact-detail1 .btn-square{
        margin-left: 80px;
      }
      .contact-detail .contact-detail1 .ms-3{
        margin-left: 0px !important;
      }
      .contact-detail .contact-detail1 .infodct{
        display: none !important;
      }
      .contact-form{
        padding: 1rem !important;
      }
    .carousel-item img{
        height: 400px !important;
    }
    .nav-str{
        background-color: var(--main-color2);
    }
    .navbar-dark .navbar-toggler{
        background-color: var(--text-color2);
    }
    .service-sec,.team{
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .blog .blog-content{
        margin-top: 0px !important;
    }
    .blog-card-modern {
        margin-bottom: 20px;
    }
    .blog-card-image-wrapper {
        height: 200px;
    }
    .blog-card-content {
        padding: 20px;
    }
    .blog-card-title {
        font-size: 1.1rem;
    }
    .blog-card-description {
        font-size: 0.9rem;
    }
    .main-form input#name, input#email, input#project, textarea#message{   
        background-color: var(--bs-white);
        color: var(--text-color2);
    }
    .main-form ::placeholder{
        color: var(--text-secondary) !important;
    }
    .rating-sec a h4{
        font-size: 17px !important;
    }
    .abt-2{
        display: none;
    }
    .who-we{
        margin-top: 0px !important;
    }
    .who-we1 .container .row{
        margin-left: 0px !important;
        margin-right: 0px !important;
        gap: 0px !important;
    }
    .who-we1 .container .row .col-lg-4.col-md-4.col-sm-12.wow.fadeIn{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .links-dir{
        padding: 12px 0px 12px 10px !important;
        margin: 0px;
    }
    .links-dir p a{
        font-size: 15px !important;
    }
    .First-con-det{
        display: none;
    }
    .con-det{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .con-det div a{
        font-size: 16px;
    }
    .sec-col-str{
        margin-top: 0px !important;
    }
    .sec-col-str p{
        font-size: 14px !important;
    }
    /* .project1{
        padding-top: 0px !important;
    } */

    .first-sec{
        margin-top: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 10px !important;
    }
    .teteam{
        margin: 30px auto !important;
    }
    .project1-sec{
        padding-top: 3rem !important;
    }
    .carousel-control-prev,.carousel-control-next{
        width: 38px;
    height: 40px;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon{
        width: 1.2rem;
    }
    #carouselId .carousel-indicators li{
        width: 20px;
    height: 0px;
    }
    .about-sec {
        padding-top: 0px !important;
    }
    .about-sec .about-contant a{
        padding: 0.5rem 2rem !important;
    }
    .pro-det .plan_heading h4{
        font-size: 17px !important;
    }
    .blog-item .blog-btn .blog-icon a{
        font-size: 14px;
    }
    .contact-form .sub-button,.main-form .sub-button-done{
        padding: 0.5rem 1.5rem !important;
    }
    .feedback-slider-item{
        padding: 60px 40px;
    }
    .feedback-slider-item p{
        font-size: 12.5px;
    }
    .pro-det ul li{
        line-height: 21px;
    }
    .pro-det ul li, .pro-det ul li i{
        font-size: 13px !important;
    }
    .who-we1 .card p{
        font-size: 13px !important;
        text-align: justify;
        line-height: 22px !important;
    }
    .first-sec .row .col-lg-4.col-md-4.col-sm-12.wow.fadeIn{
        margin-top: 0px !important;
    }
    .links-dir p{
        margin-bottom: 0px !important;
        font-size: 14px !important;
    }
    .links-dir p a{
        font-size: 14px !important;
        line-height: 25px !important;
    }

  }
@media screen and (min-width: 426px) and (max-width: 768px) {
   
  }
@media screen and (min-width: 769px) and (max-width: 1024px) {
   
  }

/* Premium Pricing Cards Responsive Styles */
@media (max-width: 992px) {
    .pro-det .plan_heading h4 {
        font-size: 1.2rem !important;
    }
    
    .pro-det {
        margin-bottom: 20px;
    }
    
    .plan-details {
        padding: 25px 20px;
    }
    
    .pro-det ul li {
        padding: 10px 0;
        padding-left: 32px;
        font-size: 0.9rem;
    }
    
    .purchase-button a button {
        padding: 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .pro-det .plan_heading {
        padding: 25px 20px;
    }
    
    .pro-det .plan_heading h4 {
        font-size: 1.1rem !important;
    }
    
    .plan-details {
        padding: 20px 15px;
    }
    
    .pro-det ul li {
        padding: 10px 0;
        padding-left: 30px;
        font-size: 0.85rem;
    }
    
    .purchase-button a button {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .pro-det {
        border-radius: 20px;
    }
    
    .pro-det .plan_heading {
        padding: 20px 15px;
    }
    
    .pro-det .plan_heading h4 {
        font-size: 1rem !important;
    }
    
    .plan-details {
        padding: 18px 12px;
    }
    
    .pro-det ul li {
        padding: 8px 0;
        padding-left: 28px;
        font-size: 0.8rem;
    }
    
    .pro-det ul li i {
        width: 20px;
        height: 20px;
        font-size: 0.85rem;
    }
    
    .purchase-button a button {
        padding: 14px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
   
  }
@media screen and (min-width: 1440px) and (max-width: 2560px) {
    .sec-img{
        height: 100% !important;
        object-fit: cover !important;
    }
  }
  
