
    /* ==============================================
       GLOBAL RESET
    ============================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      line-height: 1.6;
      color: #444;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ==============================================
       SCROLL ANIMATIONS
    ============================================== */
    .scroll-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .scroll-animate.animate-in {
      opacity: 1;
      transform: translateY(0);
    }
    .scroll-animate-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .scroll-animate-left.animate-in {
      opacity: 1;
      transform: translateX(0);
    }
    .scroll-animate-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .scroll-animate-right.animate-in {
      opacity: 1;
      transform: translateX(0);
    }
    .scroll-animate-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .scroll-animate-scale.animate-in {
      opacity: 1;
      transform: scale(1);
    }
    .scroll-stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .scroll-stagger.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
    .scroll-stagger.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
    .scroll-stagger.animate-in > *:nth-child(3) { transition-delay: 0.3s; }
    .scroll-stagger.animate-in > *:nth-child(4) { transition-delay: 0.4s; }
    .scroll-stagger.animate-in > *:nth-child(5) { transition-delay: 0.5s; }
    .scroll-stagger.animate-in > *:nth-child(6) { transition-delay: 0.6s; }
    .scroll-stagger.animate-in > *:nth-child(7) { transition-delay: 0.7s; }
    .scroll-stagger.animate-in > *:nth-child(8) { transition-delay: 0.8s; }
    .scroll-stagger.animate-in > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* ==============================================
       NAVBAR
    ============================================== */
    .callard-navbar {
      background:none;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9999;
        transition: all 0.3s ease;
      /*box-shadow: 0 1px 10px rgba(0,0,0,0.08);*/
    }

    .callard-navbar.scrolled{
      background:#020617f2;
      background: linear-gradient(145deg, #0d1117 0%, #0e1629 100%);
    }
    .callard-navbar .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }
    .callard-navbar .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }

    .callard-navbar .nav-logo img{
      width:140px;
    }
    .callard-navbar .nav-logo .logo-icon {
      width: 34px;
      height: 34px;
      background: #f5a623;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 15px;
      flex-shrink: 0;
    }
    .callard-navbar .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .callard-navbar .nav-links a {
      font-size: 13.5px;
      font-weight: 500;
      color: #cbd5e1;
      transition: color 0.25s;
      white-space: nowrap;
    }
    .callard-navbar .nav-links a:hover { color: #f5a623; }
    .callard-navbar .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
   background-image: linear-gradient(to right, #f59e0b, #d97706 );
      color: #fff;
      font-size: 13.5px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 6px;
      transition: background 0.25s, transform 0.25s;
      white-space: nowrap;
    }
    .callard-navbar .nav-cta:hover { background: #e5941a; transform: translateY(-1px); }
    .callard-navbar .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .callard-navbar .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s;
    }
    .callard-navbar .nav-mobile {
      display: none;
      flex-direction: column;
    background: linear-gradient(145deg, #0d1117 0%, #0e1629 100%);
      padding: 16px 24px 20px;
      border-top: 1px solid  #424243;
      gap: 14px;
    }
    .callard-navbar .nav-mobile.open { display: flex; }
    .callard-navbar .nav-mobile a {
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      padding: 6px 0;
      border-bottom: 1px solid #424243;
    }
    .callard-navbar .nav-mobile a:hover { color: #f5a623; }
    .callard-navbar .nav-mobile .mobile-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      background: #f5a623;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 6px;
      margin-top: 6px;
      border-bottom: none !important;
    }
    .callard-navbar .nav-mobile .mobile-cta:hover { background: #e5941a; color: #fff; }

    /* ==============================================
       MAIN WRAPPER — all sections scoped here
    ============================================== */
    .callard-home-wrapper {
      font-family: 'Poppins', sans-serif;
      overflow: hidden;
    }

    .callard-home-wrapper .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .callard-home-wrapper .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #f5a623;
      background: rgba(245,166,35,0.1);
      border: 1px solid rgba(245,166,35,0.28);
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .callard-home-wrapper .section-heading {
      font-size: 3.5vw;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.22;
      margin-bottom: 14px;
    }
    .callard-home-wrapper .section-heading span { color: #f5a623; }

    .callard-home-wrapper .section-sub {
      font-size: 14.5px;
      color: #888;
      line-height: 1.75;
      max-width: 560px;
    }

    .callard-home-wrapper .section-header-center {
      text-align: center;
      margin-bottom: 52px;
    }
    .callard-home-wrapper .section-header-center .section-sub {
      margin: 0 auto;
    }

    .callard-home-wrapper .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      transition: all 0.25s;
      border: none;
    }
    .callard-home-wrapper .btn-orange {
      background-image: linear-gradient(to right, #f59e0b, #d97706 );
      color: #fff;
    }
    .callard-home-wrapper .btn-orange:hover {
      background: #e5941a;
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(245,166,35,0.38);
    }
    .callard-home-wrapper .btn-outline-white {
      background: #fff;
      color: #1a1a2e;
      border: 2px solid #fff;
      font-weight: 600;
    }
    .callard-home-wrapper .btn-outline-white:hover {
      background: #f5f5f5;
      border-color: #e8e8e8;
      transform: translateY(-1px);
    }
    .callard-home-wrapper .btn-white {
      background: #fff;
      color: #f5a623;
      font-weight: 700;
    }
    .callard-home-wrapper .btn-white:hover {
      background: #f5f5f5;
      transform: translateY(-1px);
    }
    .callard-home-wrapper .btn-outline-cta {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.55);
    }
    .callard-home-wrapper .btn-outline-cta:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* ==============================================
       HERO BANNER (hero content + stats inside)
    ============================================== */
    .callard-home-wrapper .hero-banner {
      background: linear-gradient(145deg, #0d1117 0%, #0e1629 100%);
      background-image:
        radial-gradient(ellipse at 15% 50%, rgba(245,166,35,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(14,22,41,0.6) 0%, transparent 50%),
        linear-gradient(145deg, #0d1117 0%, #0e1629 100%);
      position: relative;
      overflow: hidden;
    }
    .callard-home-wrapper .hero-banner::before {
      content: '';
      position: absolute;
   opacity: 0.5;
      top: 20%;
      left: -5px;
     background-color: #f59e0b1a;
     filter: blur(65px);
      pointer-events: none;
      border-radius: 9999px;
          width: 24rem;
          height: 24rem;
    }
        .callard-home-wrapper .hero-banner::after {
      content: '';
      position: absolute;
    
      top: 25%;
      right: -5px;
     background-color: #f59e0b1a;
     filter: blur(65px);
      pointer-events: none;
      border-radius: 9999px;
          width: 24rem;
          height: 24rem;
    }

   .callard-home-wrapper .hero-banner .hero-banner-overlay {
       background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
       background-size: 100px 100px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

    .callard-home-wrapper .hero-banner .hero-content {
      position: relative;
      z-index: 1;
      padding: 140px 24px 40px;
      max-width: 700px;
      margin: 0 auto;
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner {
      max-width: 700px;
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff0d;
      border: 1px solid #ffffff0d;
      color: #fde68a;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 8px 14px;
      border-radius: 20px;
      margin-bottom: 26px;
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-badge .badge-dot {
      width: 7px;
      height: 7px;
      background: #f5a623;
      border-radius: 50%;
      animation: callard-pulse 1.6s infinite;
    }
    @keyframes callard-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.45; transform: scale(1.35); }
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner h1 {
      font-size: 5.5vw;
  font-weight: 800;
  color: #fff;
  line-height: 1.24;
  margin-bottom: 22px;
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner h1 span {
         display: block;
    background-image: linear-gradient(to right, #fbbf24, #facc15, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-desc {
      font-size: 15.5px;
      color: rgba(255,255,255,0.62);
      line-height: 1.78;
      max-width: 540px;
      margin-bottom: 36px;
    }
    .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* stats strip — inside hero dark bg */
    .callard-home-wrapper .hero-banner .hero-stats-strip {
      position: relative;
      z-index: 1;
      padding-bottom:40px;

  /*    background: rgba(255,255,255,0.04);
      border-top: 1px solid rgba(255,255,255,0.07);*/
    }
    .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item {
      text-align: left;
      padding: 32px 20px;
     /* border-right: 1px solid rgba(255,255,255,0.07);*/
    }
    .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item:last-child {
      border-right: none;
    }
    .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item .stat-number {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 7px;
    }
    .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item .stat-label {
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.48);
    }

    /* ==============================================
       ABOUT SECTION
    ============================================== */
    .callard-home-wrapper .about-section {
      background: #fff;
      padding: 88px 0;
    }
    .callard-home-wrapper .about-section .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 68px;
      align-items: start;
    }
    .callard-home-wrapper .about-section .about-grid .about-left .section-heading {
      font-size: 33px;
    }
    .callard-home-wrapper .about-section .about-grid .about-left p {
      font-size: 14.5px;
      color: #666;
      line-height: 1.82;
      margin-bottom: 16px;
    }
    .callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats {
      display: flex;
      gap: 34px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats .mini-stat .mini-stat-number {
      font-size: 34px;
      font-weight: 800;
      color: #f5a623;
      line-height: 1;
      margin-bottom: 4px;
    }
    .callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats .mini-stat .mini-stat-label {
      font-size: 12px;
      color: #999;
      font-weight: 500;
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card {
      background: linear-gradient(135deg, #f8fafc 0%, #fffef9 100%);
      border: 1.5px solid #e8eaed;
      border-radius: 12px;
      padding: 24px 20px;
      transition: all 0.25s;
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card:hover {
      border-color: #f5a623;
      box-shadow: 0 8px 28px rgba(245,166,35,0.1);
      transform: translateY(-3px);
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card .card-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 13px;
      background: linear-gradient(135deg, #f6b520 0%, #de810a 100%);
      color: #fff;
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card .card-icon.c-orange { background: linear-gradient(135deg, #f6b520 0%, #de810a 100%); color: #fff; }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card .card-icon.c-purple { background: linear-gradient(135deg, #f6b520 0%, #de810a 100%); color: #fff; }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card .card-icon.c-blue   { background: linear-gradient(135deg, #f6b520 0%, #de810a 100%); color: #fff; }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card .card-icon.c-green  { background: linear-gradient(135deg, #f6b520 0%, #de810a 100%); color: #fff; }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card h4 {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 7px;
    }
    .callard-home-wrapper .about-section .about-grid .about-right .about-cards .about-card p {
      font-size: 12.5px;
      color: #888;
      line-height: 1.65;
    }

    /* ==============================================
       SERVICES SECTION
    ============================================== */
    .callard-home-wrapper .services-section {
      background: #fff;
      padding: 88px 0;
    }
    .callard-home-wrapper .services-section  .section-label{
        background: none;
        border:0px;
    }
    .callard-home-wrapper .services-section .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .callard-home-wrapper .services-section .services-grid .service-card {
      background: #f6f8fa;
      border: 0px solid #e8eaed;
      border-radius: 1rem;
      padding: 28px 22px;
      transition: all 0.25s;
    }
    .callard-home-wrapper .services-section .services-grid .service-card:hover {
     /* border-color: #f5a623;*/
      box-shadow:0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);;
      transform: translateY(-4px);
      background: #fff;
    }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 15px;
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-blue   { background-image: linear-gradient(to bottom right, #3b82f6, #06b6d4); color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-purple {     background-image: linear-gradient(to bottom right, #6366f1, #a855f7);  color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-green  { background-image: linear-gradient(to bottom right, #a855f7, #ec4899);  color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-orange { background-image: linear-gradient(to bottom right, #10b981, #14b8a6 );   color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-red    { background-image: linear-gradient(to bottom right, #f59e0b, #f97316 );   color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-pink   { background-image: linear-gradient(to bottom right, #f43f5e, #ef4444  );   color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-teal   {  background-image: linear-gradient(to bottom right, #06b6d4, #3b82f6  );   color: #fff;  }
    .callard-home-wrapper .services-section .services-grid .service-card .svc-icon.c-indigo { background-image: linear-gradient(to bottom right, #64748b, #334155   );   color: #fff; }
    .callard-home-wrapper .services-section .services-grid .service-card h3 {
         font-size: 1.25rem;
    line-height: 1.75rem;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 9px;
      margin-top: 30px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    }

 .callard-home-wrapper .services-section .services-grid .service-card:hover h3 {
  color: #d97706;
 }
    .callard-home-wrapper .services-section .services-grid .service-card p {
      font-size: 13px;
      color: #475569;
      line-height: 1.65;
    }

    /* ==============================================
       TECHNOLOGIES SECTION
    ============================================== */
    .callard-home-wrapper .technologies-section {
      background-image: linear-gradient(to bottom, #f8fafc, #fff);
      padding: 88px 0;
    }
    .callard-home-wrapper .technologies-section .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 68px;
      align-items: start;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .tech-desc {
      font-size: 14.5px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap {
      margin-bottom: 18px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap .skill-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap .skill-header .skill-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #1a1a2e;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap .skill-header .skill-pct {
      font-size: 13px;
      font-weight: 700;
      color: #f5a623;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap .skill-track {
      height: 7px;
      background: #efefef;
      border-radius: 4px;
      overflow: hidden;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-left .skill-bar-wrap .skill-track .skill-fill {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, #f5a623, #ffcc6a);
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category {
      margin-bottom: 28px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .cat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      color: #bbb;
      margin-bottom: 16px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group .tech-tag {
      background: #fff;
      box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
      border-radius: 10px;
      padding: 14px 18px;
      min-width: 120px;
      transition: all 0.22s;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group .tech-tag .tag-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      color: #f5a623;
      letter-spacing: 0.5px;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group .tech-tag .tag-name {
      font-size: 11px;
      font-weight: 600;
      color: #1a1a2e;
    }
    .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group .tech-tag:hover {
      
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    }
.callard-home-wrapper .why-section .section-label, .callard-home-wrapper .technologies-section  .section-label, .callard-home-wrapper .dedicated-section .section-label, .callard-home-wrapper .about-section .section-label{
  background: none;
  border:0px;
  padding-left: 0px;
}
    /* ==============================================
       DEDICATED SECTION
    ============================================== */
    .callard-home-wrapper .dedicated-section {
      background: linear-gradient(145deg, #0f172a 0%, #0f172a 100%);
      background-image:
        radial-gradient(ellipse at 15% 50%, rgba(245,166,35,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(15,23,42,0.6) 0%, transparent 50%),
        linear-gradient(145deg, #0f172a 0%, #0f172a 100%);
      padding: 88px 0;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .callard-home-wrapper .dedicated-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(245,166,35,0.015) 80px, rgba(245,166,35,0.015) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(245,166,35,0.015) 80px, rgba(245,166,35,0.015) 81px);
      pointer-events: none;
      opacity: 0.6;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 68px;
      align-items: start;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-left .section-heading {
      color: #fff;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-left .dedicated-desc {
      font-size: 14.5px;
      color: rgba(255,255,255,0.58);
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-left .dedicated-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards .ded-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 26px 22px;
      transition: all 0.25s;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards .ded-card:hover {
      background: rgba(245,166,35,0.06);
      border-color: rgba(245,166,35,0.28);
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards .ded-card .ded-card-icon {
      width: 46px;
      height: 46px;
      background: rgba(245,166,35,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: #f5a623;
      margin-bottom: 14px;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards .ded-card h4 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards .ded-card p {
      font-size: 12.5px;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
    }

    /* ==============================================
       WHY CHOOSE US SECTION
    ============================================== */
    .callard-home-wrapper .why-section {
      background: #f6f8fa;
      padding: 88px 0;
    }
    .callard-home-wrapper .why-section .why-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-bottom: 46px;
    }
    .callard-home-wrapper .why-section .why-features .why-card {
      background: #fff;
      border: 1.5px solid #e8eaed;
      border-radius: 14px;
      padding: 36px 26px;
      text-align: center;
      transition: all 0.25s;
    }
    .callard-home-wrapper .why-section .why-features .why-card:hover {
      border-color: #f5a623;
      box-shadow: 0 12px 36px rgba(245,166,35,0.1);
      transform: translateY(-4px);
    }
    .callard-home-wrapper .why-section .why-features .why-card .why-icon {
      width: 58px;
      height: 58px;
      background: rgba(245,166,35,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: #f5a623;
      margin: 0 auto 18px;
    }
    .callard-home-wrapper .why-section .why-features .why-card h3 {
      font-size: 15.5px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
    }
    .callard-home-wrapper .why-section .why-features .why-card p {
      font-size: 13.5px;
      color: #888;
      line-height: 1.7;
    }
    .callard-home-wrapper .why-section .why-checklist {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .callard-home-wrapper .why-section .why-checklist .check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 500;
      color: #444;
    }
    .callard-home-wrapper .why-section .why-checklist .check-item .check-badge {
      width: 22px;
      height: 22px;
      min-width: 22px;
      background: rgba(245,166,35,0.12);
      color: #f5a623;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    /* ==============================================
       CTA SECTION
    ============================================== */
    .callard-home-wrapper .cta-section {
      background: linear-gradient(145deg, #f59d0b 0%, #b75609 100%);
      background-image:
        radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(183,86,9,0.6) 0%, transparent 50%),
        linear-gradient(145deg, #f59d0b 0%, #b75609 100%);
      padding: 90px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .callard-home-wrapper .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
      pointer-events: none;
      opacity: 0.6;
    }
    .callard-home-wrapper .cta-section .cta-inner {
      position: relative;
      z-index: 1;
    }
    .callard-home-wrapper .cta-section .cta-inner h2 {
      font-size: 44px;
      font-weight: 800;
      color: #fff;
      line-height: 1.22;
      margin-bottom: 16px;
    }
    .callard-home-wrapper .cta-section .cta-inner p {
      font-size: 15.5px;
      color: #fff;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .callard-home-wrapper .cta-section .cta-inner .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }
    .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-primary {
      background: #fff;
      color: #f5a623;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: 6px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-primary:hover {
      background: #f5f5f5;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-secondary {
      background: #fff;
      color: #1a1a2e;
      font-weight: 600;
      padding: 13px 28px;
      border-radius: 6px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-secondary:hover {
      background: #f5f5f5;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .callard-home-wrapper .cta-section .cta-contact-cards {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 50px;
    }
    .callard-home-wrapper .cta-section .cta-contact-cards .contact-card {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 28px 32px;
      min-width: 240px;
      text-align: center;
      transition: all 0.25s;
    }
    .callard-home-wrapper .cta-section .cta-contact-cards .contact-card:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }
    .callard-home-wrapper .cta-section .cta-contact-cards .contact-card .card-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      font-size: 20px;
      color: #fff;
    }
    .callard-home-wrapper .cta-section .cta-contact-cards .contact-card .card-label {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }
    .callard-home-wrapper .cta-section .cta-contact-cards .contact-card .card-value {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    /* ==============================================
       FOOTER SECTION
    ============================================== */
    .callard-home-wrapper .footer-section {
      background: #0d1117;
      padding: 68px 0 0;
      color: rgba(255,255,255,0.6);
    }
    .callard-home-wrapper .footer-section .footer-grid {
      display: grid;
      grid-template-columns: 2fr 2fr 1fr;
      gap: 48px;
      padding-bottom: 50px;
    }

  .callard-home-wrapper .footer-section .footer-grid .footer-col.footer-col-service ul{
      display: grid;
      grid-template-columns: 1fr  1fr;
      gap: 10px;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 15px;
    }
     .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-logo img {
      width: 170px;
     }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-logo .logo-icon {
      width: 32px;
      height: 32px;
      background: #f5a623;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      flex-shrink: 0;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand p {
      font-size: 13.5px;
      line-height: 1.75;
      margin-bottom: 22px;
      max-width: 270px;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-socials {
      display: flex;
      gap: 9px;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-socials a {
      width: 34px;
      height: 34px;
      background: rgba(255,255,255,0.06);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55);
      font-size: 14px;
      transition: all 0.22s;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-brand .footer-socials a:hover {
      background: #f5a623;
      color: #fff;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-col ul li a {
      font-size: 13px;
      color: rgba(255,255,255,0.52);
      transition: color 0.22s;
    }
    .callard-home-wrapper .footer-section .footer-grid .footer-col ul li a:hover {
      color: #f5a623;
    }
    .callard-home-wrapper .footer-section .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 22px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .callard-home-wrapper .footer-section .footer-bottom .footer-copy {
      font-size: 12.5px;
      color: rgba(255,255,255,0.32);
    }
    .callard-home-wrapper .footer-section .footer-bottom .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .callard-home-wrapper .footer-section .footer-bottom .footer-bottom-links a {
      font-size: 12.5px;
      color: rgba(255,255,255,0.32);
      transition: color 0.22s;
    }
    .callard-home-wrapper .footer-section .footer-bottom .footer-bottom-links a:hover {
      color: #f5a623;
    }
.grecaptcha-badge {
    visibility: hidden !important;
}

    /* ==============================================
       RESPONSIVE — Tablet Large (≤1024px)
    ============================================== */
    @media (max-width: 1024px) {
      .callard-navbar .nav-links { gap: 18px; }
      .callard-navbar .nav-links a { font-size: 12.5px; }

      .callard-home-wrapper .hero-banner .hero-content .hero-inner h1 { font-size: 50px; }
      .callard-home-wrapper .section-heading { font-size: 30px; }
      .callard-home-wrapper .about-section .about-grid { gap: 42px; }
      .callard-home-wrapper .technologies-section .tech-grid { gap: 42px; }
      .callard-home-wrapper .dedicated-section .dedicated-grid { gap: 42px; }

      .callard-home-wrapper .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .callard-home-wrapper .footer-section .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      .callard-home-wrapper .footer-section .footer-grid .footer-brand {
        grid-column: span 2;
      }
    }

    /* ==============================================
       RESPONSIVE — Tablet (≤768px)
    ============================================== */
    @media (max-width: 768px) {
      .callard-navbar .nav-links { display: none; }
      .callard-navbar .nav-cta { display: none; }
      .callard-navbar .nav-hamburger { display: flex; }

      .callard-home-wrapper .hero-banner .hero-content { padding: 72px 24px 52px; }
      .callard-home-wrapper .hero-banner .hero-content .hero-inner h1 { font-size: 40px; }
      .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-desc { font-size: 14.5px; }

      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item:nth-child(2) { border-right: none; }
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item:nth-child(3),
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.07);
      }
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item:nth-child(4) { border-right: none; }

      .callard-home-wrapper .about-section { padding: 64px 0; }
      .callard-home-wrapper .about-section .about-grid { grid-template-columns: 1fr; gap: 40px; }

      .callard-home-wrapper .services-section { padding: 64px 0; }
      .callard-home-wrapper .services-section .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

      .callard-home-wrapper .technologies-section { padding: 64px 0; }
      .callard-home-wrapper .technologies-section .tech-grid { grid-template-columns: 1fr; gap: 40px; }

      .callard-home-wrapper .dedicated-section { padding: 64px 0; }
      .callard-home-wrapper .dedicated-section .dedicated-grid { grid-template-columns: 1fr; gap: 40px; }

      .callard-home-wrapper .why-section { padding: 64px 0; }
      .callard-home-wrapper .why-section .why-features { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
      .callard-home-wrapper .why-section .why-checklist { grid-template-columns: 1fr 1fr; gap: 12px; }

      .callard-home-wrapper .cta-section { padding: 68px 0; }
      .callard-home-wrapper .cta-section .cta-inner h2 { font-size: 32px; }
      .callard-home-wrapper .cta-section .cta-inner p { font-size: 14.5px; }

      .callard-home-wrapper .section-heading { font-size: 28px; }
    }

    /* ==============================================
       RESPONSIVE — Mobile (≤480px)
    ============================================== */
    @media (max-width: 480px) {
	
	
      .callard-navbar .nav-inner { padding: 0 16px; }
.callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-badge {
   
  font-size: 10px;
}
      .callard-home-wrapper .hero-banner .hero-content { padding: 110px 16px 40px; }
      .callard-home-wrapper .hero-banner .hero-content .hero-inner h1 {font-size: 10.6vw;
    line-height: 1.3; }
      .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-actions { flex-direction: column; }
      .callard-home-wrapper .hero-banner .hero-content .hero-inner .hero-actions .btn { width: 100%; justify-content: center; }
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item .stat-number { font-size: 28px; }
      .callard-home-wrapper .hero-banner .hero-stats-strip .stats-inner .stat-item { padding: 24px 14px; }

      .callard-home-wrapper .section-container { padding: 0 16px; }
      .callard-home-wrapper .section-heading { font-size: 24px; }
      .callard-home-wrapper .section-header-center { margin-bottom: 36px; }

      .callard-home-wrapper .about-section { padding: 52px 0; }
      .callard-home-wrapper .about-section .about-grid .about-right .about-cards { grid-template-columns: 1fr; }
      .callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats { gap: 20px; }
.callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats .mini-stat .mini-stat-label {
  font-size: 10px;
}
.callard-home-wrapper .about-section .about-grid .about-left .about-mini-stats .mini-stat .mini-stat-number {
  font-size: 28px;
}
      .callard-home-wrapper .services-section { padding: 52px 0; }
      .callard-home-wrapper .services-section .services-grid { grid-template-columns: 1fr; }

      .callard-home-wrapper .technologies-section { padding: 52px 0; }

      .callard-home-wrapper .dedicated-section { padding: 52px 0; }
      .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-right .dedicated-cards { grid-template-columns: 1fr; }
      .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-left .dedicated-actions { flex-direction: column; }
      .callard-home-wrapper .dedicated-section .dedicated-grid .dedicated-left .dedicated-actions .btn { width: 100%; justify-content: center; }

      .callard-home-wrapper .why-section { padding: 52px 0; }
      .callard-home-wrapper .why-section .why-checklist { grid-template-columns: 1fr; }

      .callard-home-wrapper .cta-section { padding: 52px 0; }
      .callard-home-wrapper .cta-section .cta-inner h2 { font-size: 26px; }
      .callard-home-wrapper .cta-section .cta-inner .cta-actions { flex-direction: column; align-items: center; }
      .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-primary,
      .callard-home-wrapper .cta-section .cta-inner .cta-actions .btn-cta-secondary { width: 100%; justify-content: center; max-width: 280px; }
      .callard-home-wrapper .cta-section .cta-contact-cards { flex-direction: column; align-items: center; gap: 16px; }
      .callard-home-wrapper .cta-section .cta-contact-cards .contact-card { width: 100%; max-width: 320px; }

      .callard-home-wrapper .footer-section .footer-grid { grid-template-columns: 1fr; }
      .callard-home-wrapper .footer-section .footer-grid .footer-brand { grid-column: span 1; }
      .callard-home-wrapper .footer-section .footer-bottom { flex-direction: column; text-align: center; padding: 22px 16px; }
	  
	  .callard-home-wrapper .technologies-section .tech-grid .tech-right .tech-category .tag-group .tech-tag {
  min-width: inherit;
  flex: 0 0 calc((100% - 22px) / 2);
}

    }

/* ==============================================
       CONTACT FORM POPUP MODAL
    ============================================== */
    .cf-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: transparent;
      z-index: 99999;
      align-items: center;
      justify-content: center;
      padding: 10px;
      background: rgba(0, 0, 0, 0.6);
    }
    .cf-overlay.open { display: flex; }
    .cf-modal {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 640px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,0.35);
      animation: cfSlideIn 0.35s cubic-bezier(0.34,1.2,0.64,1);
      position: relative;
    }
    @keyframes cfSlideIn {
      from { opacity: 0; transform: translateY(40px) scale(0.96); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .cf-modal-header {
      background: #fff;
      padding: 16px 20px 12px;
      border-radius: 14px 14px 0 0;
      position: relative;
      border-bottom: 1px solid #f0f0f0;
    }
    .cf-modal-header .cf-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(245,166,35,0.1);
      border: 1px solid rgba(245,166,35,0.3);
      color: #f5a623;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
    }
    .cf-modal-header h3 { font-size: 19px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
    .cf-modal-header p { font-size: 12.5px; color: #888; }
    .cf-close-btn {
      position: absolute;
      top: 12px; right: 14px;
      background: #f5f5f5;
      border: none; color: #444;
      width: 34px; height: 34px;
      border-radius: 50%;
      cursor: pointer; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .cf-close-btn:hover { background: #e8e8e8; }
    .cf-modal-body { padding: 16px 20px 20px; }
    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }
    .cf-field { display: flex; flex-direction: column; gap: 6px; }
    .cf-field label { font-size: 12.5px; font-weight: 600; color: #1a1a2e; }
    .cf-field label span { color: #f5a623; }
    .cf-field input,
    .cf-field select,
    .cf-field textarea {
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px; color: #333;
      background: #f8f9fc;
      border: 1.5px solid #e8eaf0;
      border-radius: 8px;
      padding: 8px 12px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
    }
    .cf-field input::placeholder,
    .cf-field textarea::placeholder { color: #bbb; }
    .cf-field input:focus,
    .cf-field select:focus,
    .cf-field textarea:focus {
      border-color: #f5a623;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
    }
    .cf-field textarea { resize: vertical; height: 110px; }
    .cf-field select { appearance: none; cursor: pointer; }
    .cf-select-wrap { position: relative; }
    .cf-select-wrap::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 14px; top: 50%;
      transform: translateY(-50%);
      color: #aaa; pointer-events: none; font-size: 12px;
    }
    .cf-submit-btn {
      width: 100%;
      background: linear-gradient(135deg, #f5a623 0%, #e5941a 100%);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 14.5px; font-weight: 700;
      padding: 14px; border: none; border-radius: 8px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 9px;
      margin-top: 12px;
      transition: all 0.25s;
    }
    .cf-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,0.42); }
    .cf-privacy { text-align: center; font-size: 11.5px; color: #aaa; margin-top: 12px; }
    .cf-success {
      display: none;
      flex-direction: column; align-items: center; justify-content: center;
      padding: 50px 32px; text-align: center;
    }
    .cf-success .success-icon {
      width: 70px; height: 70px;
      background: rgba(245,166,35,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 30px; color: #f5a623; margin-bottom: 18px;
    }
    .cf-success h4 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
    .cf-success p { font-size: 13.5px; color: #777; }
    @media (max-width: 540px) {
      .callard-navbar .nav-logo img {
  width: 110px;
}
      .cf-row { grid-template-columns: 1fr; }
      .cf-modal-header, .cf-modal-body { padding-left: 20px; padding-right: 20px; }
    }
