﻿body {
}

/*responsiveness*/
/* ============================
   Responsive Styles
   File: responsive.css
   ============================ */
/* General Reset for images and sections */
/*body{
    
  margin: 0;        
  padding: 0 20px;    




}*/
.journey-section {
    padding-right: 0px !important;
    padding-left: 0px !important
}


#network, #features, .reliable, #Div2, .sales-flow-section, .contact-section {
    padding-right: 40px;
    padding-left: 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid, .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ============================
   Text & Heading Scaling
   ============================ */
h1, h2, h3, h4, h5 {
    line-height: 1.3;
    word-wrap: break-word;
}

/* Default font scaling */
body {
    font-size: 16px;
}

/* ============================
   Responsive Utilities
   ============================ */

/* Extra Small devices (phones, <576px) */
@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .ptc-glow-card {
        margin-bottom: 20px;
    }

    .hero-section {
        padding: 40px 15px;
        text-align: center;
    }

        .hero-section img {
            margin: 0 auto;
        }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Small devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .ptc-glow-card {
        margin-bottom: 25px;
    }

    .hero-section {
        padding: 50px 20px;
        text-align: center;
    }
}

/* Medium devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 60px 30px;
    }
}

/* Large devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.7rem;
    }
}

/* Extra Large devices (≥1200px) */
@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    h3 {
        font-size: 1.9rem;
    }
}

/* ============================
   Flexbox Adjustments
   ============================ */
.row {
    margin-left: -10px;
    margin-right: -10px;
}

.col, [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* ============================
   Footer
   ============================ */
.footer {
    text-align: center;
    padding: 20px 10px;
}

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            display: inline-block;
            margin: 0 10px;
        }

/* ================= BASE ================= */
.ptc {
    font-family: 'Inter', sans-serif;
    background-color: #0d0f1a;
    color: #d1d5db;
    overflow-x: hidden;
    position: relative;
}

/* ================= HERO ================= */
#ptc-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Glowing Card */
.ptc-glow-card {
    position: relative;
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(45, 55, 72, 0.6);
    border-radius: 1.5rem;
    transition: all 0.3s ease-in-out;
    transform: translateZ(0);
    z-index: 10;
    overflow: hidden;
    isolation: isolate;
}

    .ptc-glow-card > * {
        position: relative;
        z-index: 1;
    }

    .ptc-glow-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,#a855f7,#ec4899,#06b6d4,#14b8a6);
        background-size: 400%;
        border-radius: 1.5rem;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 0;
    }

    .ptc-glow-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 50px rgba(0,0,0,0.5);
        border-color: rgba(90,102,122,0.8);
    }

        .ptc-glow-card:hover::before {
            opacity: 0.35;
            animation: ptc-gradient-anim 5s linear infinite;
        }

@keyframes ptc-gradient-anim {
    to {
        background-position: 400%;
    }
}

/* Hero CTA Button */
.ptc-cta-button {
    position: relative;
    background: linear-gradient(45deg,#a855f7,#ec4899);
    background-size: 200%;
    animation: ptc-button-gradient 4s ease infinite;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(236,72,153,0.6);
    font-weight: 700;
}

    .ptc-cta-button:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 0 30px rgba(236,72,153,0.8);
    }

@keyframes ptc-button-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= SHARED ================= */
.ptc-text-gradient {
    background: linear-gradient(45deg,#f8e1ff,#a5b4fc,#818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ptc-icon-gradient {
    background: linear-gradient(45deg,#ec4899,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ptc-scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

    .ptc-scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

        .ptc-scroll-animate.visible[data-delay="100"] {
            transition-delay: 0.1s;
        }

        .ptc-scroll-animate.visible[data-delay="200"] {
            transition-delay: 0.2s;
        }

        .ptc-scroll-animate.visible[data-delay="300"] {
            transition-delay: 0.3s;
        }

        .ptc-scroll-animate.visible[data-delay="400"] {
            transition-delay: 0.4s;
        }

        .ptc-scroll-animate.visible[data-delay="500"] {
            transition-delay: 0.5s;
        }

/* Mobile menu */
.ptc-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,15,26,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

    .ptc-mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

/* ================= FEATURES ================= */
.ptc-feature-card {
    background: rgba(17,24,39,0.7);
    border: 1px solid rgba(55,65,81,0.6);
    border-radius: 1rem;
    padding: 2rem;
    transition: all .3s ease;
}

    .ptc-feature-card:hover {
        transform: translateY(-6px);
        border-color: rgba(148,163,184,0.8);
    }

/* ================= WORKFLOW ================= */
.ptc-workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(17,24,39,0.65);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease;
}

    .ptc-workflow-step:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }

.ptc-arrow-icon {
    color: #d1d5db;
}

@media (min-width: 1024px) {
    .ptc-arrow-icon {
        color: #5a667a;
        transform: rotate(90deg);
    }
}

/* ================= INQUIRY ================= */
.ptc-inquiry-form {
    background: rgba(17,24,39,0.85);
    border: 1px solid rgba(75,85,99,0.7);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ptc-input {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .75rem;
    background: rgba(31,41,55,0.9);
    border: 1px solid rgba(75,85,99,0.7);
    color: #f3f4f6;
    transition: border .2s ease, box-shadow .2s ease;
}

    .ptc-input:focus {
        border-color: #a855f7;
        box-shadow: 0 0 10px rgba(168,85,247,.5);
        outline: none;
    }

/* ================= FOOTER ================= */
.ptc-footer {
    background: #0b0d16;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(55,65,81,.7);
}

.ptc-footer-link {
    color: #9ca3af;
    transition: color .3s ease;
}

    .ptc-footer-link:hover {
        color: #f3f4f6;
    }

.ptc-footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31,41,55,0.8);
    transition: all .3s ease;
}

    .ptc-footer-icon:hover {
        background: rgba(55,65,81,0.9);
        transform: scale(1.1);
    }

/*today*/
/* Target only nested li inside a ul */
li ul li {
    list-style-type: none !important; /* remove default bullet */
    position: relative !important; /* needed for custom bullet */
    padding-left: 1.2em !important; /* space for bullet */
}

    li ul li::before {
        content: "✦" !important; /* custom bullet symbol */
        color: #007bff !important; /* bullet color */
        position: absolute !important;
        left: 0 !important;
    }

@media(max-width: 1024px) {
    .logo img {
        margin-left: -16px;
    }
}

/*responsiveness*/
/* Default desktop layout */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    /*background: #f8f8f8;*/
    font-size: 14px;
}

/* Mobile layout under 768px */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column; /* stack items vertically */
        text-align: center;
        gap: 10px;
    }

    .top-left {
        float: left;
        display: flex;
    }
        /*.top-left, 
  .top-right {
    justify-content: center;  
    flex-wrap: wrap;          
  }*/

        .top-left span {
            display: block; /* "Follow us on:" goes to its own line */
            margin-bottom: 5px;
        }
}

@media (max-width: 768px) {
    .flex.items-center.justify-center.gap-6 {
        flex-direction: column;
        gap: 2rem; /* spacing between steps */
        align-items: center;
    }

    /* Arrow container becomes vertical */
    .flex.items-center {
        flex-direction: column;
        align-items: center;
    }

        .flex.items-center > .w-16.h-1 {
            width: 2px; /* vertical line */
            height: 40px;
            background: linear-gradient(to bottom, #a855f7, #ec4899);
        }

        .flex.items-center > svg {
            transform: rotate(90deg); /* rotate arrow downward */
            margin: 6px 0 0 0; /* spacing from line */
        }
}



@media (max-width: 768px) {
    /* Slide image height smaller on mobile */
    .slider-container .slide img {
        height: 300px; /* instead of 500px */
        object-position: center;
    }

    /* Overlay text scaling */
    .slider-container h1 {
        font-size: 1.5rem; /* ~24px */
        line-height: 1.2;
    }

    .slider-container h2 {
        font-size: 1.2rem !important; /* shrink subtitle */
    }

    .slider-container p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    /* Buttons stacked full width */
    .slider-container .flex {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .slider-container button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    /* Navigation arrows smaller */
    .slider-container .nav-arrow {
        font-size: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
}
/* 🔹 Base Hamburger Style */
.hamburger {
    display: none; /* hidden by default (desktop) */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 2px;
        transition: 0.3s;
    }

/* 🔹 Mobile Styles */
@media (max-width: 768px) {
    .main-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
        margin-top: 96px;
    }

        .main-nav.active {
            display: flex;
        }

        .main-nav a,
        .main-nav .dropdown > a {
            padding: 10px;
            color: black;
            text-decoration: none;
            display: block;
        }

        .main-nav .dropdown-menu {
            position: static; /* dropdown stays inside flow */
            display: none;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .main-nav .dropdown.open .dropdown-menu {
            display: block; /* tap to open dropdown */
        }
}





/* Common arrow style */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4); /* semi-transparent bg */
    color: #fff; /* arrow color */
    border: none;
    border-radius: 50%; /* makes it circular */
    width: 45px;
    height: 45px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px); /* frosted glass effect */
}

    /* Hover effect */
    .nav-arrow:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: translateY(-50%) scale(1.1);
    }

    /* Left arrow position */
    .nav-arrow.left {
        left: 15px;
    }

    /* Right arrow position */
    .nav-arrow.right {
        right: 15px;
    }




.canvas-wrapper {
    position: relative;
    width: 100%;
    height: 60vh; /* adjust section height */
    min-height: 300px; /* safe minimum for small screens */
}

#section-canvass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.canvas-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

    .canvas-text h2 {
        font-size: clamp(18px, 3vw, 36px);
        font-weight: bold;
    }

    .canvas-text p {
        font-size: clamp(14px, 2vw, 20px);
    }

@media(min-width: 769px) {
    .top-right {
        display: flex
    }

    .first {
        margin-right: 20px;
    }
}

.samee {
    width: 181px;
    height: 187px;
}

* {
    word-break: keep-all;
}



/* Common link styles */
.nav-link {
    position: relative;
    display: inline-block;
    padding-right: 20px; /* leave space for arrow */
    font-weight: 600;
    text-decoration: none;
    color: #333;
}

    /* Add arrow using CSS (::after) */
    .nav-link::after {
        content: "⮙";
        font-size: 15px;
        margin-left: 6px;
        transition: transform 0.3s ease;
        display: inline-block;
        font-size: 15px;
    }

    /* Rotate on hover */
    .nav-link:hover::after {
        transform: rotate(180deg); /* flips to ▲ */
    }




#fullScreenLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: none;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

/* Loader Animation */
.loader-circle {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #1a3a8f;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}





