/* =========================================================
   GLOBAL & RESETS
========================================================= */
:root {
  --primary: #007bff;   /* hover blue */
  --dark: #000000;      /* normal text color */
  --light: #ffffff;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*video*/
/* .video-box {
  width: 100%;
  max-width: 600px; 
  margin: 0 auto;
}

.video-box video {
  width: 100%;
  height: 320px;
  object-fit: cover;   
  display: block;
  border-radius: 8px; 
} */
.video-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.custom-video {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  display: block;
}
/*video end*/
/* client section */
.logoSlider {
  overflow: hidden;
  position: relative;
  width: 100%;       /* full width */
  margin-top: 1.5rem;
}

.logoTrack {
  display: flex;
  gap: 2rem;
  width: max-content;   /* ensures track expands to fit all logos */
  animation: scrollLeft 20s linear infinite;
}

.logoTrack img {
  flex-shrink: 0;       /* prevents logos from shrinking */
  width: 160px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logoTrack img:hover {
  transform: scale(1.15); /* pop-up effect */
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile view: faster scroll + smaller logos */
@media (max-width: 768px) {
  .logoTrack {
    animation: scrollLeft 10s linear infinite; /* faster on mobile */
  }
  .logoTrack img {
    width: 120px;
    height: 70px;
  }
}
/* client section end */
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.bg-darkblue {
    background-color: #044087;
    color: white;
}

.text-darkblue {
    color: #044087;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    
}

.page-header-seo-service {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/seo-banner.jpg) center center no-repeat;
    background-size: cover;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body{
    color: #222;
    background: #fff;
    margin: 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: #555;
    line-height: 1.6;
}


/* ======== SPINNER ======== */
#spinner {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 99999;
    transition: opacity .35s ease, visibility .35s;
}

#spinner.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* ======== ABOUT HIGHLIGHTS ======== */

.about-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.highlight-box {
    background: #fff;
    padding: 26px;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(10, 20, 40, 0.06);
    opacity: 0;
    transform: none;
    transition: all .6s ease;
}

.highlight-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 12px;
    display: block;
}

.slide-left {
    transform: translateX(-120px);
}

.slide-right {
    transform: translateX(120px);
}

.highlight-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.highlight-box.animate:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(10, 20, 40, 0.12);
}

/* ======== WHY TIMELINE ======== */
.why-timeline-section {
    background: #e9f3ff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.why-subtitle {
    max-width: 760px;
    margin: 0 auto 1rem;
    color: #555;
}

.timeline-wrapper {
    position: relative;
    padding-left: 60px;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dotted #cdd6e2;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d6e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-big-icon {
    font-size: 30px;
    color: #007bff;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    border-color: #a9cfff;
}

.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
}

.timeline-content p {
    color: #555;
}

/* image */
.why-img {
    max-width: 92%;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

/* responsive tweaks */
@media (max-width:991px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .page-header-website-service {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .timeline-wrapper {
        padding-left: 32px;
    }

    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row;
    }
}

@media (max-width:768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-content p {
        max-width: 100%;
        margin: 0 auto;
    }

    .why-img {
        margin-top: 1.5rem;
    }
}

/* small utilities */
.btn-primary,
.btn-primary:focus,
.btn-primary:hover {
    background: #007bff;
    border-color: #007bff;
}

.final-cta {
    background: #0d6efd;
    color: #fff;
}

/* ============================
   CREATIVE PROCESS SECTION
============================= */

.creative-process-section {
    background: #f7faff;
}

.process-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #555;
}

/* Wrapper */
.creative-process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Process Card */
.process-card {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

/* Alternating layout */
.process-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Large Step Number */
.process-number {
    font-size: 60px;
    font-weight: 800;
    color: #e2eeff;
    position: absolute;
    top: -25px;
    left: -15px;
    z-index: 0;
}

/* Icon Glow Background */
.process-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #007bff, #00b4ff);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    z-index: 2;
}

/* Text */
.process-text h4 {
    font-weight: 700;
}

.process-text p {
    margin: 0;
    color: #555;
    max-width: 550px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-70px);
}

.fade-right {
    transform: translateX(70px);
}

.fade-left.show,
.fade-right.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {

    .process-card,
    .process-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .process-number {
        top: -20px;
        left: 10px;
    }
}

/* Technologies Section */

.tech-left-image-section {
    background: #f7fbff;
}

.tech-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
}

.tech-left-text {
    color: #444;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Image Space Left Side */
.tech-image-wrapper {
    margin-top: 25px;
}

.tech-left-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Tech List Right Side */
.tech-list {
    padding-left: 20px;
}

.tech-item {
    display: flex;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #e5edf7;
    transition: 0.3s ease;
}

.tech-item:hover {
    transform: translateX(7px);
    border-bottom-color: #007bff;
}

.tech-icon {
    font-size: 32px;
    color: #007bff;
}

/* Fade in animation */
.fade-tech {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-tech.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section background */
.types-section {
    background: #f7fbff;
}

/* Subtitle */
.section-subtitle {
    max-width: 780px;
    margin: 0 auto;
    color: #555;
}

/* Card Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px) saturate(140%);
    border-radius: 14px;
    border: 1px solid rgba(180, 200, 255, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Card Styling */
.type-card {
    padding: 30px 25px;
    text-align: left;
    transition: 0.3s ease;
    position: relative;
}

/* Icons */
.icon-lg {
    font-size: 36px;
    color: #0d6efd;
    margin-bottom: 16px;
    display: block;
}

/* Hover Effect */
.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* POP-IN Animation */
.fade-pop {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s ease-out;
}

.fade-pop.show {
    opacity: 1;
    transform: scale(1);
}

/* Gradient ONLY on the section background */
.types-bg {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f7f8fc 35%,
            #dceaff 75%,
            #c7ddff 100%);
    padding: 70px 0;
}

/* Center subtitle width */
.section-subtitle {
    max-width: 780px;
    margin: 0 auto;
    color: #555;
}

/* PURE WHITE CARDS */
.type-card {
    background: #ffffff !important;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(210, 220, 240, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* ICONS */
.icon-lg {
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
}

/* Hover */
.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Pop-in effect */
.fade-pop {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s ease-out;
}

.fade-pop.show {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .type-card {
        text-align: center;
    }
}

/* Portfolio Section Background */
.portfolio-section {
    background: linear-gradient(to bottom, #ffffff, #f2f7ff);
}

/* Subtitle */
.portfolio-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
}

/* Portfolio Card */
.portfolio-card {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(200, 220, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

/* Image */
.portfolio-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Hover */
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

/* Carousel Controls */
.portfolio-control {
    filter: invert(1);
}

/* Fade effect */
.carousel-item {
    transition: transform 1s ease, opacity 1s ease;
}

/* Beautiful small pagination dots */
.carousel-indicators {
    position: static;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.client-testimonial-section {
    background: #f4f8ff;
}

/* Main Row (keeps everything in ONE LINE) */
.testimonial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT: Bigger Reel Frame (Portrait) */
.video-box {
    width: 30%;
    display: flex;
    justify-content: center;
}

.reel-frame {
    width: 180px;
    /* bigger size */
    aspect-ratio: 9 / 16;
    display: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.reel-frame.active {
    display: block;
}

.reel-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT: Cards Wrapper 70% */
.cards-box {
    width: 70%;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
}

/* Testimonial Card */
.testimonial-card {
    width: 50%;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.t-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dots under card slider */
.carousel-indicators {
    position: static;
    margin-top: 15px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background: #003366;
    border-radius: 50%;
}

.carousel-indicators .active {
    background: #007bff;
}

.dots-center {
    text-align: center !important;
}

/* Mobile */
@media(max-width: 768px) {
    .testimonial-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .video-box,
    .cards-box {
        width: 100%;
    }

    .reel-frame {
        margin: auto;
    }

    .cards-wrapper {
        flex-direction: column;
    }

    .testimonial-card {
        width: 100%;
    }
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #bcd1ff;
    /* soft pastel blue */
    transition: all 0.3s ease;
    opacity: 0.6;
}

.carousel-indicators [data-bs-target]:hover {
    transform: scale(1.3);
    opacity: 1;
}

.carousel-indicators .active {
    background: #0056d6;
    /* rich blue */
    width: 10px;
    height: 10px;
    opacity: 1;
    transform: scale(1.3);
}

.client-testimonial-section {
    background:
        linear-gradient(135deg, rgba(200, 215, 255, 0.95), rgba(220, 230, 255, 1)),
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.45) 0,
            rgba(255, 255, 255, 0.45) 3px,
            transparent 3px,
            transparent 9px);
}


/* FAQ Section Background */
.faq-section {
    background: #f9fbff;
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Each FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 0;
    border: 1px solid rgba(180, 200, 230, 0.4);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

/* Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Answer Box */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.35s ease;
}

/* Actual Answer Text */
.faq-answer p {
    font-size: 16px;
    color: #555;
    padding: 12px 0 20px 0;
    margin: 0;
}

/* Arrow Icon */
.arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

/* Rotate when open */
.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* Expand when active */
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================================================
   FINAL CTA – Sub Footer Section
========================================================= */

.final-cta-section {
    background: linear-gradient(180deg, #e8f3ff, #d2e7ff, #c4dcff);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Glow behind card */
.final-cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.25), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* White Card */
.cta-box {
    background: #ffffff;
    /* PURE WHITE */
    border-radius: 22px;
    padding: 50px 35px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    animation: floatBox 6s ease-in-out infinite;
    border: 1px solid rgba(200, 220, 255, 0.5);
}

/* Title */
.cta-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    color: #002a54;
}

/* Description */
.cta-desc {
    font-size: 17px;
    color: #033264;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    background: #005ce6;
    color: #fff;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 50px;
    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Hover Shine */
.cta-btn:hover {
    background: #0046b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Floating Animation */
@keyframes floatBox {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .cta-box {
        padding: 40px 25px;
    }
}

/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}
.bg-lightblue{
    background-color: #0672f4;
    color: white;
}
.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #044087;
}

.copyright a:hover {
    color: var(--primary) !important;
}

/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}