
body {
    font-family: 'Jost', sans-serif !important;
}
h1, h2, h3 {
    font-family: 'Funnel Display', sans-serif;
}

p {
    font-family: 'Noto Sans', sans-serif;
}


.urban.services-section {
    padding: 60px 20px;
    text-align: center;
    background:#42c493d6;
}

.urban .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

/* Grid */
.urban .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Single Box */
.urban .service-box {
    background: #f7f7f7;
    padding: 40px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 2px solid #d9d5d5;
}

.urban .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.urban .service-icon img {
   width: 80%;
  margin-bottom: 20px;
  border-radius: 20px;
}

.urban .service-box h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .urban .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .urban .services-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 24px;
    }
}


/*========================================*/
 .section-title { font-weight: 700; font-size: 28px; text-align: center; margin-bottom: 40px; }
        .feature-img { width: 100%; height:auto; }
        .cta-btn { padding: 10px 25px; font-weight: 600; margin-top:15px; }
        .card-block { padding: 30px 15px; border-radius: 15px; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
        

/**/

.swiper-1{
     background:#130628;       
        }
 .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .slider-track {
    display: flex;
    animation: scroll 18s linear infinite;
  }

  .slider-item {
    min-width: 33.33%; /* 3 items */
    padding: 10px;
  }

  .slider-item img {
    width: 100%;
    height: 240px;      
    object-fit: cover;   
    border-radius: 10px;
  }

  /* Tablet */
  @media (max-width: 768px) {
    .slider-item {
      min-width: 50%;
    }
    .slider-item img {
      height: 200px; 
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .slider-item {
      min-width: 100%;
    }
    .slider-item img {
      height: 180px;
    }
  }

  /* Animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


/* Section Wrapper */
.urban.testimonial-section {
    padding: 60px 20px;
    background: #242323;
}

.urban .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid */
.urban .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Box */
.urban .testimonial-box {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
    border: 2px solid #d2d2d2;
}

.urban .testimonial-box:hover {
    transform: translateY(-4px);
}

/* User Icon */
.urban .t-img img {
    width: 80px;
    height: 80px;
}

/* Stars */
.urban .t-stars {
    margin: 15px 0;
    font-size: 20px;
    color: #ffbb33;
}

/* Text */
.urban .t-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Name */
.urban .t-name {
    font-weight: 700;
    font-size: 16px;
}



/* Tablets */
@media (max-width: 992px) {
    .urban .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .urban .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 26px;
    }

    .urban .testimonial-box {
        padding: 30px 20px;
    }
}

/* Very Small Mobile – 320px Ready */
@media (max-width: 360px) {
    .urban .t-img img {
        width: 65px;
        height: 65px;
    }

    .urban .t-text {
        font-size: 14px;
    }

    .urban .t-name {
        font-size: 15px;
    }
}


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-image: url('/public/images/homeback2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    padding: 120px 5% 60px 5%;  
}

/* Dark Overlay */
.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 37, 87, 0.61);
    z-index: 1;
    background-size:cover;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -----------------------------
   LEFT TEXT CONTENT
----------------------------- */
.left-content {
    width: 50%;
    color: #fff;
}

.left-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 90%;
    line-height: 1.5;
}

/*.hero-btn {*/
/*    display: inline-block;*/
/*    padding: 12px 28px;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    transition: 0.3s;*/
/*}*/

/*.hero-btn:hover {*/
/*    background: #e85d00;*/
/*}*/
.hero-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffbb00, #ff6a00);
    box-shadow: 0 6px 18px rgba(255, 115, 0, 0.4);
    transition: 0.3s ease-in-out;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffd75a, #ff8c1a);
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.55);
    transform: translateY(-3px);
}
.sapn-1{
    color: #ff9500;
}

/* -----------------------------
   RIGHT IMAGE CONTENT
----------------------------- */
.right-content {
    width: 45%;
    display: flex;
    justify-content: center;
}

.right-content img {
    width: 100%;
    /*max-width: 420px;*/
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
}

/* ----------------------------------------------------
   RESPONSIVE: TABLETS
---------------------------------------------------- */
@media (max-width: 991px) {
    .about-hero {
        padding-top: 140px; /* avoid header overlap on tablets */
        padding-bottom: 60px;
        background-position: center;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .right-content {
        margin-top: 35px;
    }

    .left-content h1 {
        font-size: 45px;
    }

    .left-content p {
        font-size: 18px;
    }
    .latest-img-box .second-img{
        order:1;
    }
}

/* ----------------------------------------------------
   RESPONSIVE: MOBILE
---------------------------------------------------- */
@media (max-width: 480px) {
    .about-hero {
        padding-top: 150px; /* FIX: heading hidden issue */
        padding-bottom: 50px;
    }

    .left-content h1 {
        font-size: 35px;
    }

    .left-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 16px;
    }

    .right-content img {
        max-width: 300px;
    }
}

/* ----------------------------------------------------
   EXTRA SMALL DEVICES (≤ 320px)
---------------------------------------------------- */
@media (max-width: 320px) {
    .about-hero {
        padding-top: 160px;
    }

    .left-content h1 {
        font-size: 28px;
    }
}



.fish-wave {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#fish-wave-path {
    animation: fishWaveMove 2s ease-in-out infinite alternate;
}

@keyframes fishWaveMove {
    0% {
        d: path("M0,97 C250,120 250,120 500,100 C750,80 750,80 1000,95 C1250,110 1250,110 1440,97 L1440,150 L0,150 Z");
    }
    100% {
        d: path("M0,90 C250,110 250,110 500,120 C750,130 750,130 1000,115 C1250,100 1250,100 1440,90 L1440,150 L0,150 Z");
    }
}


/* ===========================================*/
.pub-section {
    padding: 60px 0;
    background: #f4f6f9;
}

.pub-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.pub-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #083b72;
    letter-spacing: 1px;
}

.pub-line {
    width: 60px;
    height: 4px;
    background: #3cb043;
    margin: 10px auto 40px;
    border-radius: 5px;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pub-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

.pub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
}

.pub-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pub-body {
    padding: 20px;
}

.pub-type {
    font-size: 14px;
    font-weight: 700;
    color: #0a6fb8;
}

.pub-title {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pub-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.pub-date {
    font-size: 14px;
    color: #777;
}

/* Responsive for 320px */
@media(max-width: 480px) {
    .pub-heading {
        font-size: 26px;
    }
    .pub-title {
        font-size: 16px;
    }
}




/*cards for trading*/
    .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.retro-layout .v-height {
    height: 240px;
}
.retro-layout .h-entry {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.retro-layout .gradient {
    position: relative;
}
.retro-layout .h-entry.gradient {
    position: relative;
}
.retro-layout .h-entry.mb-30 {
    margin-bottom: 30px;
}
.retro-layout .h-entry.gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
.retro-layout .h-entry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.retro-layout .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px;
}
.retro-layout .text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}
.retro-layout .h-entry .date {
    font-size: 15px;
}
.retro-layout .text h2, .retro-layout .text .h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0;
}
@media (max-width: 767.98px){
.retro-layout .img-5 {
    height: 240px !important;
    margin-bottom: 30px;
    margin-top: 30px;
}
}


        .text-white {
            color: #fff !important;
        }

        .bg-purple {
            background-color: #776af8 !important;
        }

        .bg-light-gray {
            background-color: #edf2f8 !important;
        }

        .bg-dark-gray {
            background-color: #49556b !important;
        }

        .bg-dark {
            background-color: #19212d !important;
        }


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Main Wrapper */
.register-wrapper {
    min-height: 100vh;
    /*background:#0b2e80;*/
     background-image: url('/public/images/1_oUPYHaJYWSIuEpOSh9dK5Q.jpg');
      background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
}

/* Container */
.register-container {
    display: flex;
    width: 100%;
}

/* Left Image */
.register-image {
    width: 60%;
    background-size: cover;
    background-position: center;
    display: none;
}

@media (min-width: 768px) {
    .register-image {
        display: block;
    }
}

/* Right Side */
.register-form-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

@media (min-width: 768px) {
    .register-form-area {
       width: 101%;
    }
}

/* Form Box */
.register-box {
    width: 100%;
  max-width: 525px;
  text-align: center;
  color: #fff;
  border: 3px solid #808080a8;
  padding: 36px;
  border-radius: 21px;
  background: #24268cc9;
}

/* Logo */
.register-logo img {
    width: 160px;
    margin-bottom: 25px;
}

/* Title */
.register-title {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: white;
}

/* Alert */
.alert-error {
    background: #dc2626;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
   border: 1px solid #fff;
  background: #ffffff0d;
    color: #fff;
    outline: none;
}

.form-group input:focus {
    border-color: #6366f1;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 18px;
}

/* Button */
.register-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 6px;
    background: #6366f1;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background: #4f46e5;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

/* Footer */
.register-footer {
    margin-top: 18px;
    font-size: 14px;
}

.register-footer a {
    color: #818cf8;
    text-decoration: none;
}

.register-footer a:hover {
    text-decoration: underline;
}

/* ===============================
   MOBILE RESPONSIVE CSS
   =============================== */

/* Small devices */
@media (max-width: 767px) {

    /* Full screen center */
    .register-wrapper {
        min-height: 100vh;
        padding: 15px;
    }

    /* Container fix */
    .register-container {
        flex-direction: column;
    }

    /* Hide left image */
    .register-image {
        display: none;
    }

    /* Form area spacing */
    .register-form-area {
        width: 100%;
        padding: 20px 10px;
    }

    /* Form box */
    .register-box {
        max-width: 100%;
        padding: 25px 18px;
        background: #020617;
        border-radius: 10px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.5);
    }

    /* Logo resize */
    .register-logo img {
        width: 130px;
        margin-bottom: 20px;
    }

    /* Title */
    .register-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Inputs */
    .form-group input {
        padding: 14px;
        font-size: 14px;
    }

    /* Checkbox */
    .form-checkbox {
        font-size: 13px;
        align-items: flex-start;
    }

    /* Button */
    .register-btn {
        padding: 14px;
        font-size: 15px;
    }

    /* Footer */
    .register-footer {
        font-size: 13px;
        margin-top: 15px;
    }

    /* Error alert */
    .alert-error {
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 360px) {

    .register-box {
        padding: 20px 14px;
    }

    .register-title {
        font-size: 16px;
    }

    .register-btn {
        font-size: 14px;
        padding: 12px;
    }
}

