body{
    padding: 0;
    margin:0;
    font-family: Arial, sans-serif;
}


/* NAVBAR STYLE */
.navbar-custom{
    background: #0f766e;
    padding: 10px 20px;
    transition: all 0.4s ease;
    z-index: 999;
}

.navbar-custom.sticky{
    position: fixed;
    top:0;
    width:100%;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.navbar-brand{
    font-weight: bold;
    font-size: 24px;
    color: #fff !important;
}

.nav-link{
    color:#fff !important;
    margin: 0 10px;
    transition:0.3s;
}

.nav-link:hover{
    color:#ffd700 !important;
}

/* ================= MOBILE MENU ================= */

.mobile-menu{
    position: fixed;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:#0f766e;
    z-index:1001;
    transition: all 0.4s ease;
    padding:20px;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu .nav-link{
    display:block;
    padding:10px 0;
}

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1000;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

/* Hide desktop menu on mobile */
@media(max-width:991px){
    .desktop-menu{
        display:none;
    }
}

/* Hide mobile toggle on desktop */
@media(min-width:992px){
    .mobile-toggle{
        display:none;
    }
}

/* hero section */
/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url('https://in-media.apjonlinecdn.com/magefan_blog/5_Best_HP_Laptops_for_Graphic_Design.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Mobile height */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Diagonal Shapes */
.overlay-shapes::before,
.overlay-shapes::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    z-index: 1;
}

.overlay-shapes::before {
    left: 0;
    background: rgba(0, 150, 136, 0.6);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.overlay-shapes::after {
    left: 20%;
    background: rgba(0, 188, 212, 0.5);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

/* Announce Button */
.announce-btn {
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 3;
}

.btn-announce {
    background: #00bcd4;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px 0px 0px 50px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-announce:hover {
    background: #0097a7;
    color: #fff;
}

/* Title */
.hero-title {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Subtitle */
.hero-subtitle {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Graphics Badge */
.badge-graphics {
    background: #f39c12;
    color: #fff;
    padding: 8px 22px;
    border-radius: 10px;
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
}

/* Motion Badge */
.badge-motion {
    background: #e9ecef;
    color: #1e3d3f;
    padding: 8px 22px;
    border-radius: 10px;
    font-family: 'Brush Script MT', cursive;
    font-size: 26px;
}

/* Responsive Typography */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .badge-graphics,
    .badge-motion {
        font-size: 18px;
        padding: 6px 16px;
    }
}



/* WELCOME SECTION */
.welcome-section {
    background: #f4f4f4;
    padding: 30px 0;
    position: relative;
}

/* Main Title */
.welcome-title {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

/* Logo */
.welcome-logo {
    height: 70px;
    object-fit: contain;
}

/* Subtitle */
.welcome-subtitle {
    font-size: 32px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

/* Paragraph */
.welcome-text {
    font-size: 20px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Bordered Button */
.welcome-btn {
    padding: 12px 35px;
    border: 2px solid #00bcd4;
    color: #00bcd4;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    background: transparent;
}

.welcome-btn:hover {
    background: #00bcd4;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .welcome-title {
        font-size: 40px;
    }

    .welcome-subtitle {
        font-size: 26px;
    }

    .welcome-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .welcome-logo {
        height: 50px;
        margin-top: 10px;
    }

    .welcome-subtitle {
        font-size: 20px;
    }

    .welcome-text {
        font-size: 16px;
    }
}


/* CTA SECTION */
.cta-section {
    background: #f4f4f4;
    overflow: hidden;
    padding: 20px 0px;
}

/* Watermark Background Text */
.cta-watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 15px;
}

/* Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0f7c85, #13b3a6);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

/* Icon Circle */
.cta-icon {
    width: 45px;
    height: 45px;
    background: #2fd6b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 16px;
}

/* Hover Effect */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-watermark {
        font-size: 60px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 12px 25px;
    }

    .cta-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* SERVICES SECTION */
.services-section {
    padding: 50px 0;
    background: url('services-bg.png') center center/cover no-repeat;
    position: relative;
}

/* Optional light overlay */
.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* Gradient Heading Text */
.services-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #0f7c85, #13b3a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card */
.service-card {
    background: #e3e2e2;
    border-radius: 20px;
    padding: 20px;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
    cursor: pointer;
}

/* ===== GRADIENT IMAGE BORDER ===== */
.service-img-wrapper {
    padding: 3px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f7c85, #13b3a6);
    transition: 0.4s ease;
}

.service-img-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Content */
.service-content {
    padding-top: 20px;
}

.service-head h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Round Gradient Icon */
.service-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f7c85, #13b3a6);
    color: #fff;
    transition: 0.4s ease;
}

/* Paragraph */
.service-card p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== ACTIVE CARD ===== */
.service-card.active {
    background: linear-gradient(135deg, #0f7c85, #13b3a6);
    color: #fff;
}

.service-card.active p {
    color: #eafafa;
}

.service-card.active .service-icon {
    background: #ffffff;
    color: #13b3a6;
}

.service-card.active .service-img-wrapper {
    background: #ffffff;
}

/* ===== HOVER EFFECT ===== */
.service-card:hover {
    background: linear-gradient(135deg, #0f7c85, #13b3a6);
    transform: translateY(-10px);
}

.service-card:hover h4,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .service-icon {
    background: #ffffff;
    color: #13b3a6;
}

/* Hover → Border White */
.service-card:hover .service-img-wrapper {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .services-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-head h4 {
        font-size: 20px;
    }
}

/* WHY SECTION */
.why-section {
    padding: 50px 0;
    background: #eef5f7;
    position: relative;
    overflow: hidden;
}

/* Gradient Heading */
.why-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #16a6a3, #1f8db5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Wrapper */
/* .why-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #16a6a3;
    position: relative;
} */

.why-image-wrapper img {
    width: 100%;
    border-radius: 20px;
}

/* Bottom Gradient Overlay on Image */
/* .why-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,166,163,0.5), transparent);
} */

/* Dots Background Effect */
.why-dots {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#16a6a3 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Right List */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Pill Items */
.why-item {
    padding: 7px 25px;
    border-radius: 50px;
    font-size: 20px;
    background: linear-gradient(90deg, rgb(0 255 250 / 20%), rgb(255 255 255 / 20%));
    color: #222;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.why-item:hover {
    background: linear-gradient(90deg, #16a6a3, #1f8db5);
    color: #fff;
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 991px) {
    .why-title {
        font-size: 36px;
    }

    .why-item {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 60px 15px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-item {
        font-size: 16px;
        padding: 12px 20px;
    }
}


/* SECTION */
.industries-section {
    background: #efefef;
    padding: 50px 20px;
}

/* TITLE */
.industries-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1e9c9c;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

/* GRID SYSTEM */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* CARD */
.industry-card {
    background: #f7f7f7;
    padding: 20px 20px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

/* ICON */
.industry-icon i {
    font-size: 70px;
    background: linear-gradient(135deg, #1ec6c6, #1e88e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

/* TEXT */
.industry-card h5 {
    font-size: 20px;
    color: #555;
    font-weight: 500;
}

/* BORDER COLORS */
.border-blue {
    border: 3px solid #1e88e5;
}

.border-teal {
    border: 3px solid #18c2b8;
}

/* HOVER */
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */

/* Large Tablet */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 35px 15px;
    }

    .industry-icon i {
        font-size: 55px;
    }

    .industry-card h5 {
        font-size: 18px;
    }

    .industries-title {
        font-size: 28px;
    }
}


/* SECTION */
.clients-section {
    background: #efefef;
    padding: 50px 0;
    overflow: hidden;
}

/* TITLE */
.clients-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #1e9c9c;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

/* SLIDER WRAPPER */
.logo-slider {
    overflow: hidden;
    margin-bottom: 30px;
}

/* TRACK */
.logo-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* BOX */
.logo-box {
    width: 250px;
    height: 110px;
    background: linear-gradient(135deg, #bfe4e1, #a7cfe0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* IMAGE */
.logo-box img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* SCROLL ANIMATION */
.scroll-right {
    animation: scrollRight 20s linear infinite;
}

.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

/* HOVER STOP */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .clients-title {
        font-size: 36px;
    }

    .logo-box {
        width: 180px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 28px;
    }

    .logo-box {
        width: 150px;
        height: 80px;
    }
}


/* ============================= */
/*        PROCESS SECTION        */
/* ============================= */

.process-section {
    padding: 50px 0;
    background: #f2f2f2 url("pattern.png") center/cover no-repeat;
}

/* TITLE */
.process-title {
    text-align: center;
    font-size: 55px;
    font-weight: 700;
    color: #1e9c9c;
    margin-bottom: 70px;
    font-family: 'Poppins', sans-serif;
}

/* ============================= */
/*         OWL FIX HEIGHT        */
/* ============================= */

.process-carousel {
    position: relative;
}

.process-carousel .owl-stage {
    display: flex;
}

.process-carousel .owl-item {
    display: flex;
}

/* ============================= */
/*            CARD               */
/* ============================= */

.process-card {
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: 0.3s ease;
}

/* GRADIENT COLORS */
.process-card.green {
    background: linear-gradient(135deg, #18c29c, #138d75);
}

.process-card.blue {
    background: linear-gradient(135deg, #1e88e5, #0d6efd);
}

/* CARD TEXT */
.process-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.process-card p {
    font-size: 14px;
    margin: 0;
}

/* ============================= */
/*        NAVIGATION ARROWS      */
/* ============================= */

.process-carousel .owl-nav {
    display: block !important;
}

.process-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
}

/* LEFT */
.process-carousel .owl-nav .owl-prev {
    left: -60px;
}

/* RIGHT */
.process-carousel .owl-nav .owl-next {
    right: -60px;
}

/* ARROW STYLE */
.process-carousel .owl-nav button span {
    font-size: 55px !important;
    color: #18c29c !important;   /* Green */
    font-weight: 400;
    transition: 0.3s ease;
}

/* HOVER */
.process-carousel .owl-nav button:hover span {
    color: #138d75 !important;  /* Dark Green */
    transform: scale(1.2);
}

/* Remove focus outline */
.process-carousel .owl-nav button:focus {
    outline: none;
}

/* Remove dots */
.process-carousel .owl-dots {
    display: none;
}

/* ============================= */
/*          RESPONSIVE           */
/* ============================= */

@media (max-width: 1200px) {
    .process-carousel .owl-nav .owl-prev {
        left: -40px;
    }

    .process-carousel .owl-nav .owl-next {
        right: -40px;
    }
}

@media (max-width: 992px) {
    .process-title {
        font-size: 40px;
    }

    .process-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .process-carousel .owl-nav .owl-next {
        right: 0;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 70px 20px;
    }

    .process-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .process-card {
        min-height: 220px;
        padding: 35px 25px;
    }

    .process-card h3 {
        font-size: 22px;
    }

    .process-card p {
        font-size: 16px;
    }
}

/* FOOTER SECTION */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #1e88e5, #1abc9c);
    padding: 20px 0;
    color: #fff;
    overflow: hidden;
}

/* BACKGROUND IMAGE (Watermark Style) */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("footer-bg.png") center center no-repeat;
    background-size: 500px;
    opacity: 0.08; /* Light watermark */
    pointer-events: none;
}

/* CONTENT ABOVE BACKGROUND */
.footer-content {
    position: relative;
    z-index: 2;
}

/* FOOTER TEXT */
.footer-text {
    font-size: 18px;
    line-height: 1.7;
    color: #e6f6f6;
}

/* TITLES */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* UNDERLINE EFFECT */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

/* LIST */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #0ec146;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #0d6efd;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-text {
        font-size: 18px;
    }

    .footer-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 60px 20px;
    }

    .footer-text {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 18px;
    }
}