      /* ========== CUSTOM STYLES ========== */
      :root {
        --primary: #667eea;
        --secondary: #764ba2;
        --accent: #f093fb;
        --dark: #2d3748;
        --light: #f7fafc;
        --success: #48bb78;
      }
      
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      body {
        font-family: 'Open Sans', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
      }
      
      /* ========== PRELOADER ========== */
      .js-preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .preloader-inner {
        text-align: center;
        color: white;
      }
      
      .dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
      }
      
      .dots span {
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        animation: bounce 1.4s infinite ease-in-out both;
      }
      
      .dots span:nth-child(1) { animation-delay: -0.32s; }
      .dots span:nth-child(2) { animation-delay: -0.16s; }
      
      @keyframes bounce {
        0%, 80%, 100% { transform: scale(0); }
        40% { transform: scale(1); }
      }
      
      /* ========== HEADER ========== */
      .pre-header {
        background: var(--dark);
        color: white;
        padding: 8px 0;
        font-size: 14px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
      }
      
      .pre-header .left-info ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
      }
      
      .pre-header .left-info a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .pre-header .left-info a:hover {
        color: var(--accent);
      }

      .pre-header .left-info i {
        margin-right: 5px;
      }
      
      .social-icons ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 15px;
        justify-content: flex-end;
      }
      
      .social-icons a {
        color: white;
        font-size: 16px;
        transition: color 0.3s ease;
      }

      .social-icons a:hover {
        color: var(--accent);
      }
      
      .header-area {
        background: white;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        top: var(--preheader-height, 40px);
        z-index: 999;
        transition: all 0.3s ease;
      }

      /* Let the document flow start below the fixed pre-header + header.
         Default header height ~80px; JS will set --header-offset precisely. */
      /* body {
        padding-top: var(--header-offset, 120px);
      }
       */
      .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
      }
      
      .logo {
        display: inline-block;
      }
      
      .logo img {
        height: 40px;
        width: auto;
        display: block;
      }
      
      .nav {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 30px;
        align-items: center;
      }
      
      .nav a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 15px;
        transition: color 0.3s ease;
        position: relative;
      }
      
      .nav a:hover, .nav a.active {
        color: var(--primary);
      }

      .nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background: var(--primary);
        transition: width 0.3s ease;
      }

      .nav a:hover::after,
      .nav a.active::after {
        width: 100%;
      }
      
      .menu-trigger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
      }

      .menu-trigger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--dark);
        margin: 3px 0;
        transition: all 0.3s ease;
      }
      
      /* ========== HERO SECTION ========== */
      .main-banner {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 50px 0 100px;
        color: white;
        position: relative;
        overflow: hidden;
      }
      
      .main-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
        background-size: cover;
      }
      
      .main-banner-container {
        position: relative;
        z-index: 2;
      }
      
      .caption h6 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        opacity: 0.9;
      }
      
      .caption h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
      }
      
      .caption h1 em {
        font-style: normal;
        color: var(--accent);
      }
      
      .caption h1 span {
        display: block;
        background: linear-gradient(45deg, var(--accent), #ffecd2);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      
      .line-dec {
        width: 80px;
        height: 4px;
        background: var(--accent);
        margin: 20px 0;
        border-radius: 2px;
      }
      
      .caption p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
      }
      
      .main-button {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
      }
      
      .main-button a {
        padding: 15px 35px;
        background: var(--accent);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid var(--accent);
      }
      
      .main-button a:hover {
        background: transparent;
        transform: translateY(-3px);
      }
      
      .secondary-button {
        background: transparent !important;
        border: 2px solid white !important;
      }
      
      .secondary-button:hover {
        background: white !important;
        color: var(--primary) !important;
      }
      
      .trust-badges {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
      }
      
      .trust-badges span {
        font-size: 14px;
        opacity: 0.9;
      }
      
      .hero-image {
        text-align: center;
      }
      
      .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      }
      
      /* ========== ABOUT SECTION ========== */
      .section {
        padding: 100px 0;
      }
      
      .infos {
        background: var(--light);
      }
      
      .section-heading {
        margin-bottom: 50px;
      }
      
      .section-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
      }
      
      .section-heading h2 em {
        font-style: normal;
        color: var(--primary);
      }
      
      .section-heading h2 span {
        color: var(--secondary);
      }
      
      .section-heading p {
        font-size: 1.1rem;
        
        color: #666;
        
      }
      
      .left-image img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      }
      
      .skills {
        margin-top: 40px;
      }
      
      .skill-slide {
        margin-bottom: 25px;
      }
      
      .skill-slide h6 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-weight: 600;
      }
      
      .fill {
        height: 8px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 4px;
        position: relative;
      }
      
      .marketing .fill { width: 90%; }
      .digital .fill { width: 80%; }
      .media .fill { width: 95%; }
      
      /* ========== SERVICES SECTION ========== */
      .services {
        background: white;
        position: relative;
      }
      
      .service-item {
        text-align: center;
        padding: 40px 20px;
        border-radius: 15px;
        transition: all 0.3s ease;
        margin-bottom: 30px;
        background: var(--light);
      }
      
      .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      }
      
      .service-item .icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
      }
      
      .service-item h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark);
      }
      
      .service-item p {
        color: #666;
        font-size: 0.95rem;
      }
      
      /* ========== PROJECTS SECTION ========== */
      .projects {
        background: var(--light);
      }
      
      .owl-features .item {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        margin: 15px;
      }
      
      .owl-features .item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      }
      
      .down-content {
        padding: 30px;
      }
      
      .down-content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
      }
      
      .down-content h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark);
      }
      
      .down-content p {
        color: #666;
        margin-bottom: 20px;
      }
      
      /* ========== TESTIMONIALS ========== */
      .testimonials {
        background: white;
      }
      
      .testimonial-item {
        background: var(--light);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 30px;
        position: relative;
      }
      
      .testimonial-item::before {
        content: '"';
        font-size: 80px;
        color: var(--primary);
        position: absolute;
        top: 10px;
        left: 20px;
        opacity: 0.2;
        line-height: 1;
      }
      
      .client-info {
        margin-bottom: 20px;
      }
      
      .client-info h4 {
        margin: 0;
        font-weight: 700;
        color: var(--dark);
      }
      
      .client-info span {
        color: #666;
        font-size: 0.9rem;
      }
      
      .rating {
        color: #ffc107;
        margin-top: 15px;
        font-size: 1.2rem;
      }
      
      /* ========== FAQ SECTION ========== */
      .faq-section {
        background: var(--light);
        padding: 80px 0;
      }
      
      .faq-item {
        background: white;
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      }
      
      .faq-item h3 {
        color: var(--primary);
        margin-bottom: 15px;
        font-weight: 600;
      }
      
      /* ========== CONTACT SECTION ========== */
      .contact-us {
        background: linear-gradient(135deg, var(--dark) 0%, #4a5568 100%);
        color: white;
        padding: 100px 0;
      }
      
      .contact-us .section-heading h2 {
        color: white;
      }
      
      .contact-us .section-heading p {
        color: rgba(255,255,255,0.8);
      }
      
      #contact-form {
        background: rgba(255,255,255,0.1);
        padding: 40px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
      }
      
      fieldset {
        margin-bottom: 20px;
      }
      
      input, select, textarea {
        width: 100%;
        padding: 15px 20px;
        border: none;
        border-radius: 10px;
        background: rgba(255,255,255,0.9);
        font-size: 1rem;
      }
      
      .orange-button {
        background: var(--accent);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
      }
      
      .orange-button:hover {
        background: #e879f9;
        transform: translateY(-3px);
      }
      
      .more-info {
        margin-top: 50px;
      }
      
      .info-item {
        text-align: center;
        padding: 20px;
      }
      
      .info-item i {
        font-size: 2rem;
        color: var(--accent);
        margin-bottom: 15px;
      }
      
      .info-item h4 {
        margin-bottom: 10px;
      }
      
      .info-item a {
        color: white;
        text-decoration: none;
      }
      
      .info-item p {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
      }
      
      /* ========== FOOTER ========== */
      footer {
        background: #1a202c;
        color: white;
        padding: 60px 0 20px;
      }
      
      .footer-about img {
        margin-bottom: 20px;
      }
      
      .footer-about p {
        color: #a0aec0;
        margin-bottom: 20px;
      }
      
      .footer-links h4, .footer-contact h4 {
        color: white;
        margin-bottom: 20px;
        font-size: 1.2rem;
      }
      
      .footer-links ul {
        list-style: none;
        padding: 0;
      }
      
      .footer-links li {
        margin-bottom: 10px;
      }
      
      .footer-links a {
        color: #a0aec0;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .footer-links a:hover {
        color: var(--accent);
      }
      
      .footer-contact p {
        color: #a0aec0;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }
      
      .footer-contact i {
        margin-right: 10px;
        color: var(--accent);
        width: 20px;
      }
      
      .copyright {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid #2d3748;
        margin-top: 40px;
        color: #a0aec0;
      }
      
      .copyright a {
        color: var(--accent);
        text-decoration: none;
      }
      
      /* ========== FLOATING BUTTONS ========== */
      .back-to-top, .whatsapp-float, .call-float {
        position: fixed;
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        z-index: 1000;
        transition: all 0.3s ease;
      }
      
      .back-to-top {
        bottom: 100px;
        right: 30px;
        display: none;
      }
      
      .whatsapp-float {
        bottom: 170px;
        right: 30px;
        background: #25d366;
      }
      
      .call-float {
        bottom: 230px;
        right: 30px;
        background: var(--success);
      }
      
      .back-to-top:hover, .whatsapp-float:hover, .call-float:hover {
        transform: scale(1.1);
      }
      
      /* ========== RESPONSIVE DESIGN ========== */
      @media (max-width: 991px) {
        .nav {
          display: none;
        }
        
        .menu-trigger {
          display: flex;
        }
        
        .caption h1 {
          font-size: 2.5rem;
        }
        
        .main-button {
          flex-direction: column;
          gap: 15px;
        }
        
        .hero-image {
          margin-top: 50px;
        }
      }
      
      @media (max-width: 768px) {
        .pre-header .left-info ul {
          flex-direction: column;
          gap: 10px;
        }
        
        .social-icons ul {
          justify-content: flex-start;
          margin-top: 10px;
        }
        
        .caption h1 {
          font-size: 2rem;
        }
        
        .section {
          padding: 60px 0;
        }
        
        .section-heading h2 {
          font-size: 2rem;
        }
        
        .trust-badges {
          flex-direction: column;
          gap: 15px;
        }
      }

      /* ========== OWL CAROUSEL NAVIGATION BUTTONS ========== */
      .owl-features {
        position: relative;
      }

      .owl-prev,
      .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 24px !important;
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
      }

      .owl-prev {
        left: -25px;
      }

      .owl-next {
        right: -25px;
      }

      .owl-prev:hover,
      .owl-next:hover {
        background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%) !important;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
      }

      .owl-prev span,
      .owl-next span {
        line-height: 1;
      }

      /* Responsive adjustments for navigation buttons */
      @media (max-width: 1200px) {
        .owl-prev {
          left: 10px;
        }
        
        .owl-next {
          right: 10px;
        }
      }

      @media (max-width: 768px) {
        .owl-prev,
        .owl-next {
          width: 40px;
          height: 40px;
          font-size: 20px !important;
        }
        
        .owl-prev {
          left: 10px;
        }
        
        .owl-next {
          right: 10px;
        }
      }

      /* ========== LANDING PAGE STYLES ========== */
      .landing-page {
        padding: 100px 0 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        min-height: 100vh;
      }

      .landing-page h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .landing-page h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 40px 0 20px;
        color: var(--primary);
      }

      .landing-page h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 30px 0 15px;
        color: var(--secondary);
      }

      .landing-page p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
      }

      .landing-page ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }

      .landing-page ul li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
        font-size: 1.1rem;
        color: #555;
      }

      .landing-page ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--success);
      }

      .landing-page a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
      }

      .landing-page a:hover {
        color: var(--secondary);
      }

      .landing-content {
        background: white;
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        max-width: 900px;
        margin: 0 auto;
      }

      .back-link {
        display: inline-block;
        margin-top: 40px;
        padding: 15px 30px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white !important;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .back-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
      }

      @media (max-width: 768px) {
        .landing-page {
          padding: 120px 20px 60px;
        }

        .landing-page h1 {
          font-size: 2rem;
        }

        .landing-content {
          padding: 30px 20px;
        }
      }


.no-style-link {
  text-decoration: none;
  color: var(--accent);;
  font-weight: 600;
}