* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

a,
.btn,
.service_box,
.feat_box img,
.cont_box i,
.social_info i {
    transition: all 0.3s ease;
}

.service_box,
.feat_box,
.prod_box img,
.ftimg img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn,
.btn-contact,
.submit-btn,
.btn-top {
    border-radius: 32px;
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    color: var(--cs-white);
    font-weight: 700;
    padding: 0.75em 2.2em;
    font-size: 1.1rem;
    box-shadow: 0 4px 18px 0 rgba(37,99,235,0.10);
    border: none;
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    outline: none;
}

.btn:hover,
.btn-contact:hover,
.submit-btn:hover,
.btn-top:hover {
    background: linear-gradient(90deg, var(--cs-secondary) 0%, var(--cs-primary) 100%);
    color: var(--cs-white);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px 0 rgba(14,165,233,0.16);
}


.btn:hover,
.btn-contact:hover,
.submit-btn:hover,
.social_info ul li a i:hover {
    transform: scale(1.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid var(--cs-primary);
    outline: none;
}

.header.scrolled {
    background-color: var(--cs-bg);
    transition: background-color 0.3s ease-in-out;
}

.hero {
    background-attachment: fixed;
}

a,
.btn,
.social_info ul li a i {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.nav-item a:hover,
.btn:hover,
.social_info ul li a i:hover {
    color: var(--cs-btnhover);
    /* Adjust if necessary for visibility */
}

.service_box:hover,
.prod_box img:hover,
.ftimg img:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid var(--cs-primary);
    background-color: var(--cs-bg);
}

.navbar-toggler.collapsed {
    transition: transform 0.3s ease-out;
}

.navbar-toggler:not(.collapsed) {
    transform: rotate(90deg);
}

.navbar-toggler.collapsed {
    transition: transform 0.3s ease-out;
}

.navbar-toggler:not(.collapsed) {
    transform: rotate(90deg);
}

.prod_box img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cs-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cs-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cs-btnhover);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cs-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cs-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cs-btnhover);
}


/* SLIDER */

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.hero_content h2 {
    animation: fadeInUp 1.5s ease-out;
}

.btn-contact {
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    /* Adjust based on your design */
}

.btn-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero {
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero_content h2 {
        font-size: 18px;
        animation: none;
    }
    .btn-contact {
        padding: 10px 30px;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}


/* MORE SLIDER */

.hero {
    display: flex;
    align-items: center;
    /* Aligns vertically center */
    justify-content: flex-start;
    /* Adjusts horizontal alignment to the start, i.e., left side */
    text-align: left;
    /* Aligns text to the left */
    padding-left: 10%;
    /* Adds some padding from the left edge */
}

@media (max-width: 768px) {
    .hero {
        padding-left: 5%;
        /* Smaller padding on smaller screens */
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
p {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

:root {
    --cs-primary: #0072ce; /* Professional blue */
    --cs-secondary: #0ea5e9; /* Sky blue accent */
    --cs-red: #ef4444; /* Vibrant red */
    --cs-green: #22c55e; /* Vibrant green for accents */
    --cs-bg: #f8fafc; /* Soft background */
    --cs-bg-glass: rgba(255,255,255,0.85);
    --cs-white: #fff;
    --cs-text: #1e293b; /* Deep navy text */
    --cs-muted: #64748b; /* Muted text */
    --cs-btnhover: #005a9e; /* Darker blue hover */
    --cs-border: #e2e8f0; /* Light border */
    --cs-shadow: 0 10px 40px rgba(0,114,206,0.12);
    --cs-shadow-lg: 0 20px 60px rgba(0,114,206,0.18);
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    color: var(--cs-text);
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cp60 {
    padding: 6rem 0;
    margin: 4rem 0;
}

.service, .products, .features, .contact {
    border-radius: 24px;
    background: var(--cs-white);
    margin: 3rem 0;
    box-shadow: var(--cs-shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 114, 206, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service:hover, .products:hover, .features:hover, .contact:hover {
    box-shadow: var(--cs-shadow-lg);
    transform: translateY(-4px);
}


h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cs-primary);
    letter-spacing: -1px;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cs-text);
    margin-bottom: 0.7em;
    letter-spacing: -0.5px;
}

.hero_content h1 {
    color: var(--cs-white);
    padding-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero_content h2 {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5em;
    letter-spacing: 0.01em;
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    padding: 1.1em 1.5em;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 90%;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero_content h2 {
        font-size: 1.05rem;
        padding: 0.9em 0.7em;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero_content h1 {
        font-size: 2.5rem;
    }
    
    .cp60 {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service_box {
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        padding: 1rem;
        margin: 0 auto 1rem;
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero_content {
        text-align: center;
        padding-bottom: 1rem;
    }
}


h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cs-text);
    margin-bottom: 0.6em;
    line-height: 1.4;
}

h4, h5, h6 {
    color: var(--cs-muted);
    font-weight: 600;
    margin-bottom: 0.4em;
}

p, li {
    color: var(--cs-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1em;
    opacity: 0.95;
}


h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--cs-primary);
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--cs-text);
}

.cp60 {
    padding: 100px 0px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--cs-white);
    background-color: var(--cs-red);
    border-color: var(--cs-red);
}


/* header ================================*/

.header {
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.01));
}

.scroll-down-bg {
    background-image: none;
    background-color: var(--cs-text);
}

.navbar-toggler i {
    color: var(--cs-white);
    border: 1px solid var(--cs-primary);
    background-color: var(--cs-primary);
    padding: 8px;
    border-radius: 2px;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    text-decoration: none;
    box-shadow: none!important;
}

.navbar-brand img {
    width: 60px;
}

.navbar-brand .js-scrolling img {
    width: 40px !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    padding: 0px 15px;
}

.nav-item a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--cs-white);
}

.nav-item a:hover {
    font-weight: 600;
    color: var(--cs-primary);
}

.navbar {
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding: 1rem 2rem;
    position: relative;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link {
    color: var(--cs-white);
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.6em 1em;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 0.3rem;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cs-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 80%;
}

.navbar-nav .nav-item .nav-link:hover, 
.navbar-nav .nav-item.active .nav-link {
    color: var(--cs-secondary) !important;
    background: transparent;
    box-shadow: none;
}



/* header end ==============================*/


/* hero starts============================ */

.hero {
    background: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 8rem 0 6rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.hero-title {
    color: var(--cs-white);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.animated-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    display: inline-block;
    margin-bottom: 2rem;
}

.macro, .klima {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.macro {
    background: linear-gradient(90deg, #e11d48, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: rotateIn 1.2s ease-out;
    transform-origin: center;
}

.klima {
    background: linear-gradient(90deg, #f43f5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: rotateIn 1.2s 0.3s ease-out;
    transform-origin: center;
}

.separator {
    margin: 0 1rem;
    color: var(--cs-white);
    opacity: 0.9;
    animation: spinOnce 1.5s ease-out forwards, scaleIn 1s ease-out;
}

@keyframes spinOnce {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    to {
        transform: rotateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cs-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-highlight {
    color: var(--cs-secondary);
    position: relative;
    display: inline-block;
}

.text-highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

.company-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.company-card-header {
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    padding: 1.5rem;
    color: white;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon i {
    font-size: 2rem;
    color: white;
}

.years-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.company-card-body {
    padding: 2rem;
    color: var(--cs-text);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--cs-primary);
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badge {
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,114,206,0.3);
}


.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--cs-white);
    font-size: 1.05rem;
    padding: 0.8rem 0;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--cs-secondary);
    width: 30px;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hero-icon-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,114,206,0.2);
}

.hero-icon-item i {
    font-size: 3rem;
    color: var(--cs-secondary);
    margin-bottom: 1rem;
}

.hero-icon-item span {
    color: var(--cs-white);
    font-size: 1.05rem;
    font-weight: 600;
}

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero .row {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.hero_content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
}

.hero_content h2 {
    padding: 30px 0px;
    color: var(--cs-white);
    text-transform: none;
    font-size: 22px;
}

.btn-contact {
    padding: 15px 50px;
    border-radius: 5px;
    background-color: var(--cs-primary);
    font-size: 16px;
    color: var(--cs-white);
    text-transform: none;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: var(--cs-btnhover);
    color: var(--cs-white);
}


/* hero ends============================ */


/* service/offers starts======================= */

.title {
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.title-badge {
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    color: var(--cs-white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.text-accent {
    color: var(--cs-primary);
    position: relative;
}

.title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.title-subtitle {
    color: var(--cs-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.service_box {
    margin-bottom: 30px;
    border: 1px solid rgba(0, 114, 206, 0.1);
    padding: 40px 32px;
    min-height: 360px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 8px 32px rgba(0,114,206,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--cs-text);
}

.service_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    z-index: 2;
}

.service_box:hover {
    box-shadow: 0 20px 60px rgba(0,114,206,0.2);
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, #ffffff 0%, #e0f2fe 100%);
    border-color: rgba(0, 114, 206, 0.2);
}

.service_box:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37,99,235,0.2);
}


.service_box:hover img {
    background: linear-gradient(135deg, var(--cs-secondary) 0%, var(--cs-primary) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.2);
    transition: all 0.3s ease;
}

.service_box img {
    padding: 15px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    width: 90px;
    height: 90px;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.service_box h3 {
    padding: 15px 0px;
}


/* service/offers ends ======================= */


/* product starts============================ */

.products {
    background-color: var(--cs-bg);
}

.prod_box {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.prod_box img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    border: 2px solid var(--cs-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,114,206,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod_box img:hover {
    box-shadow: 0 20px 60px rgba(0,114,206,0.25);
    transform: scale(1.05) translateY(-5px);
    border-color: var(--cs-primary);
}


.prod_info {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0,114,206,0.08);
}

.prod_info ul li h3 {
    margin: 15px 0px;
    font-size: 1.25rem;
    color: var(--cs-primary);
    font-weight: 700;
}

.prod_info ul li p {
    text-transform: none;
    color: var(--cs-text);
    font-size: 1rem;
    line-height: 1.6;
}

.prod_info ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}


/* features starts======================= */

.features {
    background-color: var(--cs-white);
    padding: 2rem 0;
}

.feat_box {
    border-bottom: 2px solid rgba(0,114,206,0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feat_box:hover {
    padding-left: 10px;
    border-bottom-color: var(--cs-primary);
}

.ftbox {
    border-bottom: 0px;
    padding: 0;
    margin: 0;
}

.feat_box img {
    padding: 15px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    width: 90px;
    height: 90px;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
    transition: all 0.3s ease;
}

.feat_box img:hover {
    background: linear-gradient(135deg, var(--cs-secondary) 0%, var(--cs-primary) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.2);
}

.feat_box h3 {
    padding: 15px 0px;
}

.ftimg img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,114,206,0.15);
    transition: all 0.4s ease;
}

.ftimg img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,114,206,0.25);
}

.brand {
    background-color: var(--cs-bg);
}

.brand_text {
    padding: 50px;
}

.brand_text h3 {
    padding: 20px 0px;
}

.brand_text p {
    text-align: justify;
}


/* features ends======================= */


/* contact form start ====================*/

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 15px;
    color: var(--cs-muted);
    font-weight: 400;
}

.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    padding: 14px 20px;
    border: 2px solid var(--cs-border);
    background-color: var(--cs-white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    font-size: 16px;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--cs-primary);
    box-shadow: 0 0 0 4px rgba(0,114,206,0.15);
    outline: none;
    background: #f8fbff;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--cs-primary);
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.cont_box {
    display: flex;
    align-items: flex-start;
    margin: 25px 0px;
}

.cont_box i {
    padding: 10px;
    color: var(--cs-white) !important;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cs-primary);
    box-shadow: 0 4px 12px rgba(0,114,206,0.2);
    transition: all 0.3s ease;
    font-size: 18px;
}

.cont_box i:hover {
    background: transparent;
    color: var(--cs-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,114,206,0.3);
}

.cont_box h3,
.cont_box a {
    margin-left: 12px;
    color: var(--cs-text);
}

.cont_box h3 {
    margin-bottom: 0.1rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.cont_info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cont_info a {
    margin-top: 0;
    line-height: 1.3;
}

.cont_box a:hover {
    color: var(--cs-primary);
}

.social_info {
    margin: 25px 0;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social_info i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 10px;
    color: var(--cs-white) !important;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    border: 2px solid var(--cs-primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,114,206,0.2);
    font-size: 18px;
    flex-shrink: 0;
}

.social-link:hover i {
    background: transparent;
    color: var(--cs-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,114,206,0.3);
}

.social-text {
    margin-left: 12px;
    color: var(--cs-text);
    font-size: 1.05rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.social-link:hover .social-text {
    color: var(--cs-primary);
}

.map .container-fluid {
    padding: 0;
    overflow: hidden;
    margin-bottom: -7px; /* Remove gap between map and footer */
}

.map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.5s ease;
}

.map iframe:hover {
    filter: grayscale(0%) contrast(1);
}


/* contact ends================= */


/* footer */

.footer {
    padding: 60px 0 0 0;
    background: linear-gradient(135deg, #0072ce 0%, #0ea5e9 100%);
    color: var(--cs-white);
    margin-top: 0;
    box-shadow: 0 -4px 30px 0 rgba(0,114,206,0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0L100 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer p {
    color: var(--cs-white);
    opacity: 0.92;
}

.footer-heading {
    color: var(--cs-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--cs-white);
    border-radius: 2px;
}

.footer-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cs-white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1rem;
    color: var(--cs-white);
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cs-white);
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--cs-white);
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-social a:hover {
    background: var(--cs-white);
    color: var(--cs-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-copyright,
.footer-credits {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
}



/* back to top */

.backtotop {
    background-color: var(--cs-primary);
}

.btn-top {
    background: linear-gradient(90deg, var(--cs-secondary) 0%, var(--cs-primary) 100%);
    border: none;
    color: var(--cs-white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px 0 rgba(14,165,233,0.13);
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-top:hover {
    background: linear-gradient(90deg, var(--cs-primary) 0%, var(--cs-secondary) 100%);
    color: var(--cs-white);
    box-shadow: 0 8px 24px 0 rgba(14,165,233,0.19);
    transform: scale(1.08);
}

.btn-top i {
    color: var(--cs-white);
    font-size: 1.5rem;
}

/* Scroll animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations on scroll */
.service_box,
.prod_box,
.feat_box {
    animation: fadeInScale 0.6s ease-out;
}

/* Improved contact section heading */
.contact h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cs-text);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Enhanced map styling */
.map {
    margin-top: 3rem;
    border-radius: 0;
    overflow: hidden;
}

/* Professional button styling */
.btn-contact {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-contact:hover::before {
    left: 100%;
}