﻿body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: var(--bg);
    color: var(--text);
    transition: background 0.3s, color 0.3s;
    margin: 0;
}

/* font family*/
@font-face {
    font-family: 'roboto-condensed';
    src: url('../../fonts/roboto-condensed.ttf') format('truetype');
}

@font-face {
    font-family: 'myriad-pro-light';
    src: url('../../fonts/myriad-pro-light.otf') format('opentype');
}

@font-face {
    font-family: 'inter';
    src: url('../../fonts/inter.ttf') format('truetype');
}
/* font family*/

:root {
    --headfont: 'roboto-condensed', sans-serif;
    --subfont: 'myriad-pro-light', sans-serif;
    --bodyfont: 'inter', sans-serif;
    --bg: #ffffff;
    --text: #0f172a;
    --heading: #111827;
    --subheading: var(--org);
    --highlight: #7e7e7e;
    --blk: #0f172a;
    --wt: #ffffff;
    --org: #e67817;
    --ylw: #fca903;
    --gold: #fca903; /* change to your exact brand hex if needed */
    --gold-glow: rgba(252,169,3,0.22);
}

.dark-mode {
    --bg: #0d0d0d;
    --text: #e2e8f0;
    --heading: #fca903;
    --subheading: #cea473;
    --highlight: #fd9a35;
}

.online-title {
    list-style: none;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 40px;
    margin: 12px 0px 0px;
    padding: 0;
    position: relative;
}

.fixed-top.shrunk .online-title {
    margin: 3px 0px 0px;
}

.online-title h1 {
    font-family: var(--headfont);
    color: var(--org);
    font-size: 45px;
    margin: 5px 0px;
}

.fixed-top.shrunk .online-title h1 {
    font-size: 30px;
    margin: 5px 0px 0px;
}

.hero-wid-right {
    position: relative;
}

.hero-body-img {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin-top: 35%;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    animation: floatWave 6s ease-in-out infinite;
}

    /* Image */
    .hero-body-img img {
        width: 100%;
        display: block;
        border-radius: 22px;
        transform: scale(1.05);
    }

    /* Soft gradient overlay */
    .hero-body-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(0,123,255,0.15), rgba(0,255,255,0.05));
        pointer-events: none;
    }

/* Floating + waving motion */
@keyframes floatWave {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(0.3deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(8px) rotate(-0.3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/*Web services style*/

.web-services {
    padding: 50px 0;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}

.section-sub {
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 18px;
}

.services-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(240px,1fr));*/
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 4%;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #FFEFBA, #FFFFFF);
    border-radius: 22px;
    padding: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid var(--org);
    transition: .4s ease;
    animation: floatWave 6s ease-in-out infinite;
}

.dark-mode .service-card {
    background: linear-gradient(to right, #000, #0d0d0d);
}

.service-card:nth-child(even) {
    animation-delay: 1.5s;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 30px 60px rgba(0,255,255,.15);
}

.icon {
    font-size: 48px;
    display: inline-flex;
    animation: morph 4s ease-in-out infinite;
}

.service-card h3 {
    font-size: 20px;
    margin: 10px 0px;
    font-family: var(--headfont);
}

.service-card p {
    font-size: 15px;
    color: var(--org);
    line-height: 1.4;
}

.service-card ul {
    text-align: left;
    min-height: 190px;
}
/* Floating wave animation */
@keyframes floatWave {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Icon morph pulse */
@keyframes morph {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1);
    }
}
/*Web services style*/

.sub-tagline-online span {
    font-size: 9px;
}

.online-lbl-msg {
    background-color: var(--org);
    padding: 10px 10px;
    border-radius: 30px;
    margin: 10px 0px;
    text-align: center;
    color: var(--wt);
}

.tech-div-online h5 span {
    padding: 7px 10px;
    font-family: var(--bodyfont);
    font-size: 13px;
}

.tech-div-online h3 {
    font-size: 15px;
}

.btm-line-online {
    margin: 20px 0px 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.dark-mode .btm-line-online {
    border-bottom: 1px solid var(--ylw);
}
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
    .head2-online {
        font-size: 27px !important;
        color: var(--blk);
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .online-title h1 {
        font-size: 35px;
        margin: 0px 0px;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .online-title h1 {
        font-size: 20px;
        margin: 0px 0px 3px;
    }

    .fixed-top.shrunk .online-title h1 {
        font-size: 20px;
        margin: 8px 0px 0px;
    }

    .wid-01-online {
        width: 20% !important;
    }

    .wid-02-online {
        width: 80% !important;
    }

    .top-contact-online {
        border-top: none;
        margin: 0px 0px 0px -40px;
        display: flex;
    }

        .top-contact-online li {
            font-size: 12px;
        }

            .top-contact-online li:nth-child(3) {
                display: none;
            }

            .top-contact-online li img {
                width: 22px;
            }

    .top-bottom-line-online, .fixed-top.shrunk .top-bottom-line-online {
        padding: 0px;
    }

    .hero-body-img {
        margin-top: 5%;
    }

    .hero-section-bg-online {
        padding-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(1,1fr);
        gap: 15px;
    }

    .service-card ul {
        min-height: 0;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
