        /* Service Detail Content */
        .service-detail {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .detail-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #1a365d;
        }
        
        .detail-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style-type: none;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .feature-list li i {
            color: #1C75BA;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .detail-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .detail-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding: 0 10%;
            }
            
            .hero-content {
                margin: 60px auto 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .back-button {
                left: 50%;
                transform: translateX(-50%);
                bottom: 30px;
            }
            
            .detail-grid {
                grid-template-columns: 1fr;
            }
            
            .detail-image {
                order: -1;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 12px 28px;
                font-size: 1rem;
            }
            
            .detail-content h2 {
                font-size: 1.8rem;
            }
            
            .service-detail {
                padding: 60px 5%;
            }
        }
     
        
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
            width: 100vh;

        }
        
        .image-column {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 20px;
        }
        
        .image-column img {
            width: 650px;
            height: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-column {
            background: white;
            border-radius: 12px;
            padding: 40px;
           
        }
        
        .form-header {
            text-align: left;
            margin-bottom: 30px;
        }
        
        .form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 12px;
        }
        
        .form-subtitle {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .form-group-full {
            width: 100%;
            margin-bottom: 20px;
            display: flex; flex-direction: column;
        }
        
        .form-label {
            font-size: 14px;
            margin-bottom: 8px;
            color: #444;
        }
        
        .form-input, .form-select, .form-textarea {
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: #1C75BA;
            outline: none;
        }
        
      .form-textarea {
        min-height: 120px;
        resize: vertical;
        margin-top: 8px; /* Adds a small gap between label and textarea */
    }
        
        .phone-input-container {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .phone-prefix {
            padding: 0 12px;
            height: 100%;
            display: flex;
            align-items: center;
            background: #f5f5f5;
            border-right: 1px solid #ddd;
            font-size: 15px;
        }
        
        .phone-input {
            flex: 1;
            border: none;
            padding: 14px 16px;
            font-size: 15px;
        }
        
        .phone-input:focus {
            outline: none;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .form-checkbox {
            margin-top: 4px;
        }
        
        .checkbox-label {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        
        .privacy-link {
            color: #1C75BA;
            text-decoration: none;
        }
        
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        .submit-button {
            background-color: #1C75BA;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-button:hover {
            background-color: #0052cc;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-grid {
                gap: 30px;
            }
            
            .form-column {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .image-column {
                padding-left: 0;
                order: 2;
            }
            
            .form-column {
                order: 1;
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-section {
                padding-top: 0px;
                padding: 60px 4%;
            }
            
            .form-column {
                padding: 25px;
            }
            
            .form-title {
                font-size: 24px;
            }
            
            .form-subtitle {
                font-size: 15px;
            }
        }

    
        /* App Development Section Styles */
        .app-dev-section {
            padding: 60px 5% 80px;
            max-width: 3500px;
            margin: 0 auto;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 40px;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #1C75BA;
        }
        
        .back-link i {
            margin-right: 8px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #1C75BA, #00c6ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }
        
        .feature-column {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .feature-column:first-child {
            background-color: #F5F5F5;
            border-radius: 12px 0 0 12px;
        }
        
        .feature-column:nth-child(2) {
            background-color: #FFFFFF;
        }
        
        .feature-column:last-child {
            background-color: #E2E7F1;
            border-radius: 0 12px 12px 0;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }
        
        .feature-description {
            color: #444;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-column:first-child {
                border-radius: 12px 12px 0 0;
            }
            
            .feature-column:last-child {
                border-radius: 0 0 12px 12px;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1.1rem;
            }
            
            .feature-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .app-dev-section {
                padding: 40px 4% 60px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .feature-column {
                padding: 30px 20px;
            }
        }

        .ryn-impact-section {
  padding: 80px 20px;
  font-family: 'Helvetica', Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.ryn-container {
  width: 100%;
  margin: 0 auto;
}

.ryn-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ryn-blue-text {
  color: #1C75BA;
}

.ryn-black-text {
  color: #000;
}

.ryn-section-description {
  text-align: center;
  color: #000;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.ryn-testimonial-slider {
  position: relative;
}

.ryn-slider-container {
  overflow: hidden;
  margin-bottom: 20px;
}

.ryn-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.ryn-testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.ryn-quote-mark {
  font-size: 80px;
  color: #1C75BA;
  line-height: 1;
  margin-bottom: 15px;
}

.ryn-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
}

.ryn-user-info {
  display: flex;
  align-items: center;
  position: relative;
}

.ryn-profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.ryn-user-details {
  flex-grow: 1;
}

.ryn-user-name {
  font-size: 18px;
  margin: 0 0 4px 0;
  color: #000;
}

.ryn-user-role {
  font-size: 14px;
  margin: 0;
  color: #666;
}

.ryn-stars {
  color: #FFD700;
  font-size: 18px;
}

.ryn-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.ryn-arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  border: none;
  background-color: #1C75BA;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ryn-arrow-btn:hover {
  background-color: #155a8a;
}

.ryn-arrow-btn:disabled {
  background-color: #b3d4f0;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 992px) {
  .ryn-testimonial-card {
    flex: 0 0 calc(100% - 15px);
  }
  
  .ryn-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ryn-impact-section {
    padding: 60px 15px;
  }
  
  .ryn-section-title {
    font-size: 1.8rem;
  }
  
  .ryn-section-description {
    font-size: 1rem;
  }
  
  .ryn-testimonial-card {
    padding: 20px;
  }
  
  .ryn-quote-mark {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .ryn-section-title {
    font-size: 1.5rem;
  }
  
  .ryn-user-info {
    flex-wrap: wrap;
  }
  
  .ryn-stars {
    width: 100%;
    margin-top: 10px;
  }
  
  .ryn-arrow-btn {
    width: 40px;
    height: 40px;
  }
}

        /* Blog Section Styles */

        .blog-section {
            padding: 2rem 0;
            color: #333;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        
        }

        /* Header with search and tags */
        .blog-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            gap: 1rem;
        }

        .search-container {
            position: relative;
            flex: 0 0 auto;
        }

        .search-bar {
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border-radius: 25px;
            border: 1px solid #ddd;
            width: 250px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .search-bar:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background-color: #e9ecef;
            color: #495057;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .tag.active {
            background-color: #4a90e2;
            color: white;
        }

        /* Featured blog card */
        .featured-blog {
            display: flex;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .featured-content {
            flex: 0 0 55%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .featured-image {
            flex: 0 0 45%;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-blog:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #212529;
        }

        .featured-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .featured-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .featured-date {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .read-more {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 0.75rem;
        }

        /* Blog grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            min-height: 250px;
        }

        .card-title {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #212529;
        }

        .card-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-date {
            color: #6c757d;
            font-size: 0.85rem;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .featured-blog {
                flex-direction: column;
            }
            
            .featured-content, .featured-image {
                flex: 1 1 100%;
            }
            
            .featured-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .blog-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-container {
                width: 100%;
            }
            
            .search-bar {
                width: 100%;
            }
            
            .tags-container {
                justify-content: center;
            }
            
            .featured-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
           
            .featured-content {
                padding: 1.5rem;
            }
            
            .card-content {
                padding: 1.25rem;
            }
        }
        
        .use-cases-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .cases-gradient {
            background: linear-gradient(90deg, #1C75BA, #00c6ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .use-cases-description {
            font-size: 1.2rem;
            color: #000;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .use-cases-title {
                font-size: 2.2rem;
            }
            
            .use-cases-description {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .use-cases-title {
                font-size: 1.8rem;
            }
            
            .use-cases-description {
                font-size: 1rem;
            }
        }

        .use-cases-section {
            padding: 80px 10%;
            margin: 0 auto;
            padding-bottom: 0px;
        }
        
        .use-cases-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
            color: #000;
        }
        
        .cases-gradient {
            background: linear-gradient(90deg, #1C75BA, #00c6ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .use-cases-description {
            font-size: 1.2rem;
            color: #000;
            max-width: 700px;
            margin: 0 auto 60px;
            text-align: center;
            line-height: 1.6;
        }
        
        /* First Card Styles */
        .uc-card-large {
            background-color: #000;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 60px;
            display: flex;
            gap: 40px;
            color: white;
            width: 100%;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .uc-image-left {
            flex: 0 0 594px;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .uc-image-left img {
            width: 100%;
            height: 383px;
            object-fit: cover;
            display: block;
        }
        
        .uc-content-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        
        .uc-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: left;
            color: white;
        }
        
        .uc-details {
            margin-bottom: 30px;
            text-align: left;
        }
        
        .uc-detail-item {
            margin-bottom: 15px;
            line-height: 1.5;
            text-align: left;
            color: #F5F5F5;
        }
        
        .uc-detail-label {
            font-weight: 700;
            display: inline;
        }
        
        .uc-button {
            background-color: #1C75BA;
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            width: fit-content;
            transition: background-color 0.3s;
            text-align: center;
        }
        
        .uc-button:hover {
            background-color: #0052cc;
        }
        
        /* Two Card Layout Styles */
        .uc-cards-row {
            display: flex;
            gap: 24px;
            margin-bottom: 60px;
            width: 100%;
        }
        
        .uc-card {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            height: 431px;
            background-size: cover;
            background-position: center;
        }
        
        .uc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
            z-index: 1;
        }
        
        .uc-card-content {
            position: relative;
            z-index: 2;
            text-align: left;
        }
        
        /* First row - left card is narrower */
        .row-1 .uc-card:nth-child(1) {
            flex: 0 0 465px;
            background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=431&q=80');
        }
        
        .row-1 .uc-card:nth-child(2) {
            flex: 0 0 100;
            background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=431&q=80');
        }
        
        /* Second row - left card is wider */
        .row-2 .uc-card:nth-child(1) {
            flex: 0 0 744px;
            background-image: url('https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=431&q=80');
        }
        
        .row-2 .uc-card:nth-child(2) {
            flex: 0 0 465p;
            background-image: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=431&q=80');
        }
        
        /* Responsive Design */
        @media (max-width: 1300px) {
            .row-1 .uc-card:nth-child(1),
            .row-1 .uc-card:nth-child(2),
            .row-2 .uc-card:nth-child(1),
            .row-2 .uc-card:nth-child(2) {
                flex: 1 1 50%;
            }
        }
        
        @media (max-width: 1200px) {
            .uc-card-large {
                flex-direction: column;
                max-width: 800px;
            }
            
            .uc-image-left {
                flex: auto;
                width: 100%;
            }
            
            .uc-cards-row {
                flex-direction: column;
            }
            
            .uc-card {
                width: 100% !important;
                flex: auto !important;
            }
        }
        
        @media (max-width: 768px) {
            .use-cases-title {
                font-size: 2.2rem;
            }
            
            .use-cases-description {
                font-size: 1.1rem;
            }
            
            .uc-card-large {
                padding: 25px;
            }
            
            .uc-title {
                font-size: 1.6rem;
            }
            
            .uc-card {
                height: 350px;
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .use-cases-title {
                font-size: 1.8rem;
            }
            
            .use-cases-description {
                font-size: 1rem;
            }
            
            .uc-card-large {
                padding: 20px;
            }
            
            .uc-title {
                font-size: 1.4rem;
            }
            
            .uc-card {
                height: 300px;
                padding: 15px;
            }
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Hero Section Responsive Styles */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/54bcea7812aa749d97a6a9a8579a552f7d10c9d3.png ') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding: 0 10%;
            color: #fff;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin-top: 100px;
            width: 100%;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .dimmed {
            opacity: 0.7;
            text-decoration: underline;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #1C75BA;
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }
        
        .cta-button:hover {
            background-color: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
        }
        
        .back-button {
            position: absolute;
            bottom: 40px;
            left: 5%;
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 20px;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
        /* Contact Section Responsive Styles */
        .contact-section {
            padding: 80px 10%;
            padding-top: 0px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
            width: 100%;
        }
        
        .image-column {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 0;
        }
        
        .image-column img {
            width: 100%;
            max-width: 100%;
            height: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-column {
            background: white;
            border-radius: 12px;
            padding: 40px;
            width: 100%;
        }
        
        .form-header {
            text-align: left;
            margin-bottom: 30px;
        }
        
        .form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 12px;
        }
        
        .form-subtitle {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 200px;
        }
        
        .form-group-full {
            width: 100%;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .form-label {
            font-size: 14px;
            margin-bottom: 8px;
            color: #444;
        }
        
        .form-input, .form-select, .form-textarea {
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: border-color 0.3s;
            width: 100%;
        }
        
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: #1C75BA;
            outline: none;
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
            margin-top: 8px;
        }
        
        .phone-input-container {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            overflow: hidden;
            width: 100%;
        }
        
        .phone-prefix {
            padding: 0 12px;
            height: 100%;
            display: flex;
            align-items: center;
            background: #f5f5f5;
            border-right: 1px solid #ddd;
            font-size: 15px;
            white-space: nowrap;
        }
        
        .phone-input {
            flex: 1;
            border: none;
            padding: 14px 16px;
            font-size: 15px;
            width: 100%;
        }
        
        .phone-input:focus {
            outline: none;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .form-checkbox {
            margin-top: 4px;
        }
        
        .checkbox-label {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        
        .privacy-link {
            color: #1C75BA;
            text-decoration: none;
        }
        
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        .submit-button {
            background-color: #1C75BA;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .submit-button:hover {
            background-color: #0052cc;
        }
        
        /* Hero Section Responsive Breakpoints */
        @media (max-width: 1200px) {
            .hero {
                padding: 0 8%;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                padding: 0 6%;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }
            
            .hero-content {
                margin-top: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding: 0 5%;
                min-height: 80vh;
            }
            
            .hero-content {
                margin: 60px auto 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .back-button {
                left: 50%;
                transform: translateX(-50%);
                bottom: 30px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 0 4%;
                min-height: 70vh;
            }
            
            .hero-content {
                margin-top: 40px;
            }
            
            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 280px;
            }
            
            .back-button {
                padding: 8px 16px;
                font-size: 0.8rem;
                bottom: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
                color: #FFFFFF;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .hero-content {
                margin-top: 30px;
            }
        }
        
        /* Contact Section Responsive Breakpoints */
        @media (max-width: 1200px) {
            .contact-grid {
                gap: 50px;
            }
            
            .form-title {
                font-size: 26px;
            }
        }
        
        @media (max-width: 992px) {
            .contact-grid {
                gap: 40px;
            }
            
            .form-column {
                padding: 35px;
            }
            
            .form-title {
                font-size: 24px;
            }
            
            .form-subtitle {
                font-size: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .image-column {
                order: 2;
                padding-left: 0;
            }
            
            .form-column {
                order: 1;
                padding: 30px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .form-title {
                font-size: 22px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-section {
                padding-top: 0px;
                padding: 60px 4%;
            }
            
            .form-column {
                padding: 25px;
            }
            
            .form-title {
                font-size: 20px;
                margin-bottom: 8px;
            }
            
            .form-subtitle {
                font-size: 14px;
            }
            
            .form-input, .form-select, .form-textarea {
                padding: 12px 14px;
                font-size: 14px;
            }
            
            .phone-input {
                padding: 12px 14px;
            }
            
            .submit-button {
                padding: 14px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-section {
                padding-top: 0px;
                padding: 0px 3%;
            }
            
            .form-column {
                padding: 20px;
            }
            
            .form-title {
                font-size: 18px;
            }
            
            .form-header {
                margin-bottom: 20px;
            }
            
            .form-row {
                margin-bottom: 15px;
            }
            
            .checkbox-group {
                margin-bottom: 20px;
            }
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
            margin-top: 32px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
            display: inline-block;
        }

        .btn-primary {
            background: #ffffff;
            color: #1e3a8a;
        }

        .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
  .cta-section {
  background: white;
  padding: 0;
  color: #333;
  min-height: 100vh;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.cta-content {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100vh;
  min-height: 700px;
}

.cta-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.phone-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-form {
  flex: 1;
  background: white;
  padding: 30px 40px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  max-height: 100vh;
  box-sizing: border-box;
}

.cta-form h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.cta-form > p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  min-height: 60px;
  resize: vertical;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 110px;
}

.phone-input input {
  flex: 1;
}

.privacy-text {
  font-size: 0.8rem;
  color: #666;
  margin: 15px 0 10px 0;
  line-height: 1.4;
}

.privacy-text a {
  color: #007bff;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #007bff;
  color: white;
  width: 100%;
  margin-top: 5px;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  
  .cta-left {
    height: 300px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .cta-form {
    padding: 30px 20px;
    max-height: none;
  }
}

/* For screens with limited height */
@media (max-height: 800px) {
  .cta-form {
    padding: 20px 40px;
  }
  
  .cta-form h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  
  .cta-form > p {
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-row {
    margin-bottom: 12px;
  }
}
.cta-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-text {
                text-align: center;
            }

            .cta-form {
                max-width: 500px;
                margin: 0 auto;
            }
            .cta-left {
                height: 250px;
            }
.cta-section {
          background: white;
          padding: 0;
          color: #333;
          min-height: 100vh;
        }


        .cta-content {
          display: flex;
          gap: 0;
          align-items: stretch;
          height: 100vh;
          min-height: 700px;
        }

        .cta-left {
          flex: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
        }

        .phone-mockup {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .phone-mockup img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 20px;
        }

        .cta-form {
          flex: 1;
          background: white;
          padding: 60px 40px 30px 40px; /* Added more top padding for space */
          color: #333;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          overflow-y: auto;
          max-height: 100vh;
          box-sizing: border-box;
        }

        .cta-form h3 {
          font-size: 2.4rem; /* Increased from 1.6rem to 2.4rem */
          font-weight: 700;
          margin-bottom: 20px; /* Increased margin for better spacing */
          color: #333;
          line-height: 1.2;
        }

        .cta-form > p {
          color: #666;
          margin-bottom: 30px; /* Increased margin for better spacing */
          line-height: 1.5;
          font-size: 1rem; /* Slightly increased font size */
        }

        .form-row {
          display: flex;
          gap: 20px;
          margin-bottom: 15px;
        }

        .form-group {
          flex: 1;
          margin-bottom: 15px;
        }

        .form-group label {
          display: block;
          margin-bottom: 6px;
          font-weight: 600;
          color: #333;
          font-size: 0.85rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
          width: 100%;
          padding: 10px 12px;
          border: 2px solid #e0e0e0;
          border-radius: 6px;
          font-size: 0.9rem;
          transition: border-color 0.3s ease;
          background: white;
          box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
          outline: none;
          border-color: #007bff;
        }

        .form-group textarea {
          min-height: 60px;
          resize: vertical;
        }

        .phone-input {
          display: flex;
          gap: 10px;
        }

        .country-code {
          flex: 0 0 110px;
        }

        .phone-input input {
          flex: 1;
        }

        .privacy-text {
          font-size: 0.8rem;
          color: #666;
          margin: 15px 0 10px 0;
          line-height: 1.4;
        }

        .privacy-text a {
          color: #007bff;
          text-decoration: none;
        }

        .privacy-text a:hover {
          text-decoration: underline;
        }

        .btn {
          padding: 12px 24px;
          border: none;
          border-radius: 6px;
          font-size: 0.9rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          text-decoration: none;
          display: inline-block;
          text-align: center;
        }

        .btn-primary {
          background: #007bff;
          color: white;
          width: 100%;
          margin-top: 5px;
        }

        .btn-primary:hover {
          background: #0056b3;
          transform: translateY(-1px);
        }

        /* Responsive */
        @media (max-width: 768px) {
          .cta-content {
            flex-direction: column;
            height: auto;
            min-height: auto;
          }
          
          .cta-left {
            height: 300px;
          }
          
          .form-row {
            flex-direction: column;
            gap: 0;
          }
          
          .cta-form {
            padding: 40px 20px 30px 20px; /* Adjusted padding for mobile */
          }
          
          .cta-form h3 {
            font-size: 2rem; /* Slightly smaller on mobile but still larger than before */
          }
        }

        /* For screens with limited height */
        @media (max-height: 800px) {
          .cta-form {
            padding: 40px 40px 20px 40px; /* Still more top padding than before */
          }
          
          .cta-form h3 {
            font-size: 2rem; /* Larger than the original 1.4rem */
            margin-bottom: 15px;
          }
          
          .cta-form > p {
            margin-bottom: 20px;
          }
          
          .form-group {
            margin-bottom: 12px;
          }
          
          .form-row {
            margin-bottom: 12px;
          }
        }

        .contact-section {
    padding: 80px 0%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    width: 100%;
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.image-column img {
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.form-column {
    background: white;
    border-radius: 12px;
    padding: 40px;
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    margin-top: 8px;
}

.form-textarea::placeholder {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #7a7a7a;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.phone-prefix {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-size: 15px;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
}

.phone-input:focus {
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.form-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.privacy-link {
    color: #1C75BA;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #1C75BA;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0052cc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
    
    .form-column {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .image-column {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }

    .image-column img {
        max-width: 100%;
        max-height: none;
    }
    
    .form-column {
        order: 1;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 4%;
    }
    
    .form-column {
        padding: 25px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
}