 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: #fff;
 }

 .video-box img {
     width: 100%;
 }

 p {
     margin-bottom: 30px;
 }
.final-cta .hero-buttons {
    justify-content: center;
}
 h3 {
     color: #0F58AD;
     font-size: 20px;
     margin-bottom: 8px;
 }


 .cta-box h3 {
     color: #fff;
 }

 /* Header */
 header {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
 }

 .logo {
     font-size: 28px;
     font-weight: bold;
     color: #008000;
     text-decoration: none;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .nav-links li {
     position: relative;
 }

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     transition: color 0.3s;
     display: block;
     padding: 10px 0;
 }

 .nav-links a:hover {
     color: #008000;
 }

 .nav-cta {
     background: #008000;
     color: #fff !important;
     padding: 8px 20px !important;
     border-radius: 5px;
 }

 /* Mega Menu Dropdown */
 .mega-dropdown {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     width: 650px;
     background: #EEF4F0;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
     padding: 35px;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
     z-index: 1001;
     margin-top: 10px;
 }

 .nav-links li:hover .mega-dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
 }
.opt-video-col .video-preview-wrapper img {
    width: 100%;
}
 .mega-dropdown::before {
     content: '';
     position: absolute;
     top: -8px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border-left: 10px solid transparent;
     border-right: 10px solid transparent;
     border-bottom: 10px solid #fff;
 }

 .mega-dropdown-content {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 40px;
 }

 .mega-left {
     padding-right: 20px;
 }

 .mega-left h3 {
     font-size: 22px;
     color: #008000;
     margin-bottom: 15px;
 }

 .mega-left p {
     color: #888;
     font-size: 15px;
     line-height: 1.7;
 }

 .mega-right {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .mega-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 12px;
     border-radius: 8px;
     transition: background 0.2s;
     cursor: pointer;
 }

 .mega-item:hover {
     background: #f5f5f5;
 }

 .mega-icon {
     width: 40px;
     height: 40px;
     min-width: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .mega-icon svg {
     width: 32px;
     height: 32px;
     stroke: #333;
     fill: none;
     stroke-width: 1.5;
 }

 .mega-item-text h4 {
     font-size: 16px;
     color: #1a1a2e;
     margin-bottom: 4px;
     font-weight: 600;
 }

 .mega-item-text p {
     font-size: 13px;
     color: #888;
     line-height: 1.4;
 }

 /* Hero Section */
 .hero {
     position: relative;
     height: 70vh;
     overflow: hidden;
 }

 .hero h1 {
     font-size: 52px;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 18px;
     color: #ccc;
     max-width: 700px;
     margin: 0 auto 30px;
 }

 .hero-cta {
     display: inline-block;
     background: #008000;
     color: #fff;
     padding: 12px 30px;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     transition: background 0.3s;
     margin-top: 15px;
 }

 .btn-outline {
     background: #fff;
 }

 .hero-cta:hover {
     background: #316c31;
 }

 #video-box {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .hero .container {
     position: relative;
     z-index: 2;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     /* Vertical alignment */
     align-items: center;
     /* Horizontal alignment */
     text-align: center;
     color: #fff;
 }

 #video-box video {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1;
 }

 /* Section Headers */
 .section-header {
     text-align: center;
 }

 .section-heading h2 {
     font-size: 42px;
     color: #1a1a2e;
     margin-bottom: 10px;
 }

 .section-heading p {
     color: #666;
     font-size: 18px;
 }


 .stats-section {
     /* background: #fff; */
     padding: 25px 0;
     /* margin-top: 40px; */
     background: linear-gradient(135deg, #008000, #006400);

 }

 .stats-section .container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     gap: 25px;
 }

 .stat-card {
     background: #fff;
     text-align: center;
     padding: 35px 20px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-8px);
 }

 .stat-card h2 {
     font-size: 52px;
     color: #008000;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .stat-card p {
     font-size: 18px;
     color: #555;
     margin: 0;
     line-height: 1.5;
 }


 /* @media (max-width: 1200px) {
    .container,.security-section .container {
        max-width: 1000px;
    }
  } */

 /* Hosting Service */
 /* .services-section {
     padding: 100px 0;
     background: #f8f9fb;
     font-family: Arial, sans-serif;
 } */

 /* .container {
     width: 90%;
     max-width: 1300px;
     margin: auto;
 } */

 .section-heading {
     text-align: center;
     max-width: 900px;
     margin: 0 auto 60px;
 }

 .section-heading h2 {
     font-size: 42px;
     line-height: 1.2;
     color: #111827;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .section-heading h2 span {
     color: #16a34a;
 }

 .section-heading p {
     font-size: 18px;
     line-height: 1.8;
     color: #6b7280;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .service-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 20px;
     text-align: center;
     border-top: 4px solid #16a34a;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-10px);
 }

 .icon {
     width: 90px;
     height: 90px;
     background: #eef9f1;
     border-radius: 50%;
     margin: 0 auto 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 42px;
 }

 .service-card h3 {
     font-size: 28px;
     margin-bottom: 20px;
     color: #111827;
 }

 .service-card p {
     color: #6b7280;
     line-height: 1.8;
     margin-bottom: 25px;
 }

 .tags {
     display: flex;
     justify-content: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .tags span {
     background: #f1f7f2;
     color: #16a34a;
     padding: 10px 18px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
 }

 .cta-wrapper {
     text-align: center;
     margin-top: 20px;
 }

 /* .cta-btn {
     display: inline-block;
     background: #16a34a;
     color: #fff;
     text-decoration: none;
     padding: 18px 40px;
     border-radius: 10px;
     font-size: 20px;
     font-weight: 700;
     transition: 0.3s;
 }

 .cta-btn:hover {
     background: #15803d;
 } */

 .cta-note {
     margin-top: 20px;
     color: #6b7280;
     font-size: 15px;
 }

 /* Pricing Cards */
 .pricing-section {
     padding: 60px 0;
     background: #f8f9fa;
 }

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

 .pricing-card {
     background: #fff;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: transform 0.3s;
     position: relative;
     overflow: hidden;
 }

 .pricing-card:hover {
     transform: translateY(-5px);
 }

 .pricing-card h3 {
     font-size: 22px;
     margin-bottom: 10px;
    color: #0F58AD; 

 }
 .sp-service-card h3 {
    color: #008000;
 }

 .pricing-card .subtitle {
     color: #666;
     font-size: 14px;
     margin-bottom: 20px;
 }

 .features-list {
     list-style: none;
     text-align: left;
     margin: 20px 0;
     padding: 0;
 }

 .features-list li {
     padding: 8px 0;
     border-bottom: 1px solid #eee;
     font-size: 14px;
     color: #555;
 }

 .features-list li:last-child {
     border-bottom: none;
 }

 .discount-badge {
     display: inline-block;
     background: #008000;
     color: #fff;
     width: 70px;
     height: 70px;
     line-height: 70px;
     border-radius: 50%;
     font-weight: bold;
     font-size: 16px;
     margin: 15px 0;
     border: 3px solid #fff;
     box-shadow: 0 0 0 3px #008000;
 }

 .price {
     font-size: 28px;
     font-weight: bold;
     color: #1a1a2e;
     margin: 10px 0;
 }

 .old-price {
     text-decoration: line-through;
     color: #999;
     font-size: 16px;
 }

 .btn-order {
     display: inline-block;
     background: #008000;
     color: #fff;
     padding: 10px 25px;
     text-decoration: none;
     border-radius: 5px;
     margin-top: 15px;
     font-weight: 500;
     transition: background 0.3s;
 }

 .btn-order:hover {
     background: #c0392b;
 }

 /* Features Section */
 .features-section {
     padding: 60px 0;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin-top: 40px;
 }

 .feature-item {
     text-align: center;
     align-items: center;
 }

 .feature-icon {
     font-size: 40px;
     margin-bottom: 15px;
     color: #008000;
 }

 .feature-item h3 {
     font-size: 18px;
     margin-bottom: 10px;
     color: #1a1a2e;
     text-align: left;
 }

 .feature-item p {
     color: #666;
     font-size: 15px;
     text-align: left;
 }

 /* Map Section */
 .map-section {
     padding: 60px 0;
     background: #1a1a2e;
     color: #fff;
     text-align: center;
 }

 .map-section h2 {
     font-size: 32px;
     margin-bottom: 15px;
 }

 .map-section p {
     color: #aaa;
     margin-bottom: 30px;
 }

 .locations {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 30px;
 }

 .location-tag {
     background: rgba(255, 255, 255, 0.1);
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 14px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .world-map {
     max-width: 100%;
     height: auto;
     opacity: 0.8;
 }

 /* Services Section */
 .services-section {
     padding: 60px 0;
     background: #f8f9fa;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
 }

 .service-card {
     background: #fff;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .service-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
 }

 .service-card h3 {
     color: #008000;
     margin-bottom: 10px;
     font-size: 20px;
 }

 .service-card p {
     color: #666;
     font-size: 14px;
     line-height: 1.6;
 }

 /* Testimonials */
 .testimonials-section {
     padding: 60px 0;
 }

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

 .testimonial-card {
     background: #fff;
     border-left: 4px solid #008000;
     padding: 25px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     border-radius: 0 10px 10px 0;
 }

 .testimonial-card h4 {
     color: #008000;
     margin-bottom: 10px;
     font-size: 18px;
 }

 .testimonial-card p {
     color: #555;
     font-style: italic;
     margin-bottom: 15px;
 }

 .testimonial-author {
     font-weight: bold;
     color: #333;
     font-size: 14px;
 }

 /* FAQ Section */
 .faq-section {
     padding: 60px 0;
     background: #f8f9fa;
 }

 .faq-item {
     background: #fff;
     margin-bottom: 15px;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     max-width: 1000px;
     margin: 0 auto 15px;
 }

 .faq-question {
     padding: 20px 25px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: #1a1a2e;
     transition: background 0.3s;
 }

 .faq-question:hover {
     background: #EEF4F0;
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
     color: #666;
     font-size: 15px;
 }

 .faq-item.active .faq-answer {
     padding: 25px;
     max-height: 300px;
     border-left: 4px solid #008000;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     border-radius: 0 10px 10px 0;
     background-color: #EEF4F0;
 }

 .faq-toggle {
     font-size: 20px;
     color: #008000;
     transition: transform 0.3s;
 }

 .faq-item.active .faq-toggle {
     transform: rotate(45deg);
 }

 /* Footer */
 footer {
     background: #1a1a2e;
     color: #fff;
     padding: 40px 0 20px;
     text-align: center;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     text-align: left;
     margin-bottom: 30px;
 }

 .footer-col h4 {
     color: #008000;
     margin-bottom: 15px;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #aaa;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col ul li a:hover {
     color: #fff;
 }

 .copyright {
     border-top: 1px solid #333;
     padding-top: 20px;
     color: #aaa;
     font-size: 14px;
 }


 /* SEO Section */
 .seo-section {
     padding: 20px 0 60px 0;
     background: #f8fafc;
 }

 /* .container {
     width: 90%;
     max-width: 1400px;
     margin: auto;
 } */

 .seo-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .seo-content h2 {
     font-size: 42px;
     line-height: 1.2;
     margin-bottom: 25px;
     color: #0f172a;
 }

 .seo-content h2 span {
     color: #008000;
 }

 .intro {
     font-size: 18px;
     color: #64748b;
     line-height: 1.8;
     margin-bottom: 40px;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
     margin-top: 15px;
 }

 .benefit-item {
     background: #fff;
     border-radius: 15px;
     padding: 25px;
     display: flex;
     gap: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
 }

 .number {
     min-width: 45px;
     height: 45px;
     background: #008000;
     color: #fff;
     border-radius: 50%;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .benefit-item h3 {
     font-size: 20px;
     margin-bottom: 8px;
     text-align: left;
 }

 .seo-include-image {
     margin-top: 30px;
 }

 .seo-include-image img {
     height: 320px;
     object-fit: cover;
 }

 .benefit-item p {
     color: #64748b;
     line-height: 1.6;
     text-align: left;
 }

 .seo-sidebar {
     position: sticky;
     top: 30px;
 }

 .seo-image img {
     width: 100%;
     border-radius: 20px;
     display: block;
 }

 .seo-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-top: 20px;
 }

 .stat {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
 }

 .stat strong {
     display: block;
     font-size: 30px;
     margin-bottom: 10px;
 }

 .cta-box {
     margin-top: 25px;
     background: #008000;
     color: #fff;
     border-radius: 20px;
     padding: 35px;
     text-align: center;
 }

 .cta-box h3 {
     font-size: 26px;
     margin-bottom: 20px;
 }

 .call-btn {
     display: inline-block;
     background: #fff;
     color: #008000;
     text-decoration: none;
     padding: 15px 30px;
     border-radius: 8px;
     font-size: 20px;
     font-weight: 700;
 }

 /* Business Section */
 .business-section {
     padding: 40px 0;
     background: #f8fafc;
 }

 .business-section .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }



 .business-section.sub-title {
     display: inline-block;
     font-size: 14px;
     font-weight: 700;
     color: #16a34a;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
     position: relative;
 }

 .business-section.sub-title::after {
     content: "";
     width: 60px;
     height: 2px;
     background: #16a34a;
     display: block;
     margin: 10px auto 0;
 }



 .business-section.section-header p {
     font-size: 22px;
     line-height: 1.8;
     color: #475569;
 }

 .business-section .highlight-box {
     max-width: 1100px;
     margin: 0 auto 50px;

     background-color: #EEF4F0;
     padding: 40px;
     border-left: 4px solid #008000;
     padding: 25px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     border-radius: 0 10px 10px 0;
 }

 .business-section .highlight-box p {
     margin: 0;
     font-size: 20px;
     line-height: 1.7;
     color: #0f172a;
 }

 .business-section .highlight-box strong {
     color: #008000;
 }

 .business-section .cta-box {
     background: linear-gradient(135deg, #008000, #006400);
     border-radius: 16px;
     padding: 40px 50px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
 }

 .cta-content h3 {
     color: #fff;
     font-size: 35px;
     margin-bottom: 10px;
 }

 .business-section .cta-content p {
     color: rgba(255, 255, 255, 0.95);
     font-size: 24px;
     margin: 0;
 }

 .business-section .cta-btn {
     background: #fff;
     color: #16a34a;
     text-decoration: none;
     padding: 18px 35px;
     border-radius: 8px;
     font-size: 18px;
     font-weight: 700;
     white-space: nowrap;
     transition: 0.3s;
 }

 .cta-btn:hover {
     transform: translateY(-2px);
 }



 /* SEO Approach */
 .seo-approach {
     padding: 50px 0;
     background: #ffffff;
 }

 .seo-approach .container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .seo-approach-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 70px;
     align-items: flex-start;
 }

 /* Left Side */

 .section-label {
     display: inline-block;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 2px;
     color: #16a34a;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .seo-content h2 {
     font-size: 72px;
     line-height: 1.1;
     color: #0f172a;
     margin-bottom: 20px;
     font-weight: 800;
 }

 .seo-content h2 span {
     color: #16a34a;
 }

 .heading-line {
     width: 120px;
     height: 4px;
     background: #16a34a;
     border-radius: 50px;
     margin-bottom: 35px !important;
 }

 .seo-content p {
     font-size: 22px;
     line-height: 1.8;
     color: #475569;
     margin-bottom: 40px;
 }

 .result-box {
     background: linear-gradient(135deg, #008000, #006400);
     border-radius: 16px;
     padding: 35px;
     margin-top: 15px;
 }

 .result-content h3 {
     color: #fff;
     font-size: 40px;
     margin-bottom: 15px;
 }

 .result-content p {
     color: #fff;
     font-size: 28px;
     line-height: 1.5;
     margin: 0;
 }

 /* Right Side */

 .seo-features {
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 24px;
     padding: 40px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
 }

 .feature-item {
     display: flex;
     gap: 15px;
     padding: 15px 0;
     border-bottom: 1px solid #e5e7eb;
 }

 .feature-item:last-child {
     border-bottom: none;
 }

 .feature-number {
     font-size: 20px;
     font-weight: 800;
     color: #16a34a;
     min-width: 90px;
 }

 .feature-item h3 {
     font-size: 25px;
     margin-bottom: 12px;
     color: #0f172a;
 }

 .feature-item p {
     color: #64748b;
     font-size: 18px;
     line-height: 1.3;
     margin-bottom: 5px;
 }



 /* Proven Results */
 .results-section {
     padding: 40px 0;
     background: #f8fafc;
 }

 .results-section .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-header {
     text-align: center;
     margin-bottom: 70px;
 }

 .section-tag {
     display: inline-block;
     background: #edf7ef;
     color: #16a34a;
     padding: 12px 24px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 25px;
     text-transform: uppercase;
 }

 /* .section-header h2 {
    font-size: 64px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
} */

 /* .section-header h2 span {
    color: #16a34a;
}

.section-header p {
    font-size: 24px;
    color: #64748b;
} */

 .heading-line {
     width: 120px;
     height: 4px;
     background: #16a34a;
     margin: 25px auto 0;
     border-radius: 30px;
 }

 .results-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .result-card {
     background: #fff;
     padding: 35px;
     text-align: center;
     border-radius: 20px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
     border-bottom: 5px solid #16a34a;
     transition: all 0.3s ease;
 }

 .result-card:hover {
     transform: translateY(-8px);
 }

 .stat-number {
     font-size: 35px;
     font-weight: 800;
     color: #16a34a;
     line-height: 1;
     margin-bottom: 30px;
 }

 .result-card h3 {
     font-size: 25px;
     color: #0f172a;
     line-height: 1.2;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .result-card p {
     font-size: 17px;
     line-height: 1.5;
     color: #64748b;
     margin-bottom: 0;
 }



 .circle-tick {
     width: 24px;
     height: 24px;
     background: #008000;
     border-radius: 50%;
     display: inline-block;
     position: relative;
 }

 .circle-tick::after {
     content: "";
     position: absolute;
     left: 8px;
     top: 4px;
     width: 5px;
     height: 10px;
     border: solid #fff;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 .final-cta {
     background-color: rgb(238, 244, 240);
     padding: 40px;
 }

 .final-cta .cta-content {
     text-align: center;
     max-width: 600px;
     margin: 0 auto;
 }

 .final-cta .phone-icon {
     font-size: 30px;
     font-weight: 600;
     margin-bottom: 20px;
     color: #0F58AD;
     text-decoration: none !important;


 }

 .final-cta .cta-conten .phone-icon {
     text-decoration: none !important;
 }

 /* Core values */
 .core-values {
     padding: 40px 0;
     background: #fff;
 }

 .core-values-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 50px;
     margin-top: 60px;
 }

 .core-item {
     text-align: center;
 }

 .icon-box {
     width: 90px;
     height: 90px;
     margin: 0 auto 25px;
     background: #eef4f0;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .icon-box .material-symbols-outlined {
     font-size: 40px;
     color: #111827;
     transition: all 0.3s ease;
 }

 .core-item:hover .icon-box {
     background: #008000;
     transform: translateY(-5px);
 }

 .core-item:hover .icon-box .material-symbols-outlined {
     color: #fff;
 }

 .core-item h3 {
     font-size: 28px;
     font-weight: 600;
     color: #111827;
     margin-bottom: 15px;
 }

 .core-item p {
     font-size: 18px;
     line-height: 1.8;
     color: #6b7280;
     max-width: 320px;
     margin: 0 auto;
 }


 .services-best {
     padding: 40px 0;
     background: #fff;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .service-box {
     border: 1px solid #d9e0d8;
     padding: 20px;
     background-color: rgb(238, 244, 240);
     transition: all 0.3s ease;
 }

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

 .service-icon {
     width: 60px;
     height: 60px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 5px;
     transition: all 0.3s ease;
 }

 .service-icon .material-symbols-outlined {
     font-size: 34px;
     color: #008000;
     transition: all 0.3s ease;
 }

 .service-box:hover .service-icon {
     background: #008000;
 }

 .service-box:hover .service-icon .material-symbols-outlined {
     color: #ffffff;
 }

 .service-box h3 {
     font-size: 22px;
     font-weight: 600;
     color: #111827;
     line-height: 1.2;
 }

 .service-box p {
     font-size: 17px;
     line-height: 1.8;
     color: #6b7280;
     margin-bottom: 0;
 }

 .cta-center {
     justify-content: center;
 }

 .section-heading {
     text-align: center;
     margin-bottom: 20px;
 }


 .heading-line {
     width: 80px;
     height: 4px;
     background: #008000;
     margin: 0 auto;
     border-radius: 20px;
 }




 /* About hero */
 body {
     margin: 0;
     font-family: 'Poppins', sans-serif;
     color: #0d1740;
 }

 .container {
     max-width: 1300px;
     margin: auto;
     padding: 0 20px;
 }

 .services-grid-about {
     grid-template-columns: repeat(4, 1fr);
 }

 .contact-card a {
    color: #008000;
 }
 /* HERO */

 .about-hero {
     background: #f7faff;
     padding: 50px 0;
     overflow: hidden;
     background-image: url('/assets/img/about-bg.webp');
     background-size: cover;
     background-position: center;
 }
 .hosting-hero {
         background-image: url('/assets/img/hosting-banner.webp');

 }
 .reseller-banner {
         background-image: url('/assets/img/reseller-banner.webp');

 }
 .privacy-banner {
     background-image: url('/assets/img/privacy-banner.webp');
 }
.contact-hero {
 background-image: url('/assets/img/contact-us.webp');
}


 .hero-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 .hero-left {
     flex: 1;
 }

 .hero-left h1 {
     font-size: 48px;
     line-height: 1.2;
     font-weight: 800;
     margin: 0;
     color: #008000;
 }
 .websie-optimization-section.optimization-section .card-content a  {
    color: #fff;
 }

 .line {
     width: 100px;
     height: 4px;
     background: #008000;
     margin: 30px 0;
 }

 .hero-left p {
     font-size: 22px;
     line-height: 1.7;
     max-width: 650px;
     color: #008000;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     margin-top: 40px;
 }

 .btn {
     text-decoration: none;
     padding: 18px 35px;
     border-radius: 12px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .btn-primary {
     background: #008000;
     color: #fff;
 }

 .btn-outline {
     border: 2px solid #008000;
     color: #008000;
 }

 .circle-image {
     width: 700px;
     height: 700px;
     border-radius: 50%;
     overflow: hidden;
     position: relative;
 }

 .circle-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* WHO WE ARE */

 .who-we-are {
     padding: 60px 0;
     text-align: center;
 }

 .section-heading span {
     color: #008000;
     font-weight: 700;
     letter-spacing: 2px;
 }

 a.custom-link {
     text-decoration: none;
     color: #008000;
     font-weight: 600;
 }


 .section-heading p {
     max-width: 900px;
     margin: auto;
     font-size: 18px;
     line-height: 1.8;
 }

 /* SERVICES */

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 .services-grid-about {
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     padding: 20px;

 }

 .service-item {
     text-align: left;
 }

 .icon-circle {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     background: #edf4ff;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .icon-circle i {
     color: #008000;
     font-size: 38px;
 }

 .service-item h3 {
     margin-bottom: 15px;
 }

 .service-item p {
     line-height: 1.8;
 }

 /* STATS */

 .stats-section.about-stats {
     background: linear-gradient(135deg, #008000, #006400);
     padding: 20px 0;
     color: #fff;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }

 .stat-box {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     border-right: 1px solid rgba(255, 255, 255, .3);
     padding: 0 10px;
 }

 .stat-box:last-child {
     border-right: none;
 }

 .stat-box i {
     font-size: 30px;
 }

 .stat-box h3 {
     font-size: 30px;
     margin: 0;
     color: #fff;
 }

 .stat-box p {
     margin: 5px 0 0;
 }

 .home-stats-section .container {
     grid-template-columns: repeat(4, 1fr);
 }

 .who-we-are .services-grid {
     grid-template-columns: repeat(4, 1fr);
 }

 .mission-section {
     padding: 60px 0;
     background: linear-gradient(135deg, #f8fafc, #eef2f7);
     overflow: hidden;
 }

 .mission-section .container {
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .mission-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 80px;
 }

 .mission-content {
     flex: 1;
     max-width: 600px;
 }

 .mission-tag {
     display: inline-block;
     padding: 12px 30px;
     border: 1px solid #2e9e41;
     border-radius: 50px;
     color: #2e9e41;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 25px;
 }

 .mission-title {
     font-size: 72px;
     line-height: 1.1;
     margin-bottom: 20px;
     color: #081326;
     font-weight: 800;
 }

 .mission-title span {
     color: #2e9e41;
 }

 .title-line {
     width: 90px;
     height: 5px;
     background: #2e9e41;
     border-radius: 20px;
     margin-bottom: 35px;
 }

 .mission-description {
     font-size: 18px;
     line-height: 1.7;
     color: #374151;
     margin-bottom: 50px;
 }

 .circle-image {
     width: 400px;
     height: 400px;
     border-radius: 50%;
     overflow: hidden;
     border: 12px solid #fff;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
 }

 .circle-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .target-card {
     position: absolute;
     bottom: -20px;
     left: 50%;
     transform: translateX(-50%);
 }

 .target-inner {
     width: 25px;
     height: 25px;
     background: #2e9e41;
     border-radius: 50%;
 }



 .security-section {
     padding: 50px 0;
     background: #fff;
     overflow: hidden;
 }

 .security-section .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .security-wrapper {
     display: flex;
     align-items: center;
     gap: 70px;
 }

 /* Left Side */
 .security-images {
     position: relative;
     width: 45%;
 }
 .opt-video-col h3 {
    color: #fff;
 }

 .shape-bg {
     position: absolute;
     width: 220px;
     height: 260px;
     background: #008000;
     top: -15px;
     left: -15px;
     z-index: 1;
     border-radius: 2px;
 }

 .main-image {
     position: relative;
     z-index: 2;
 }

 .main-image img {
      width: 100%;
     display: block;
     object-fit: cover;
 }

 .small-image {
     position: absolute;
     right: -30px;
     bottom: -40px;
     width: 220px;
     background: #fff;
     padding: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
     z-index: 3;
 }

 .small-image img {
     width: 100%;
     display: block;
 }

 /* Right Side */
 .security-content {
     width: 55%;
 }

 .section-line {
     width: 35px;
     height: 3px;
     background: #008000;
     display: block;
     margin-bottom: 20px;
 }

 .intro-text {
     color: #777;
     font-size: 15px;
     line-height: 1.8;
     margin-bottom: 35px;
 }

 .feature-item {
     display: flex;
     gap: 20px;
     padding: 10px 0 !important;
 }

 .check-icon {
     width: 28px;
     height: 28px;
     min-width: 28px;
     background: #edf7ef;
     color: #008000;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
 }

 .feature-item h3 {
     font-size: 22px;
     color: #222;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .feature-item p {
     color: #777;
     line-height: 1.7;
     font-size: 15px;
 }

 .read-more-btn {
     display: inline-block;
     background: #008000;
     color: #fff;
     text-decoration: none;
     padding: 14px 35px;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 1px;
     margin-top: 10px;
     transition: .3s;
 }

 .read-more-btn:hover {
     background: #008000;
 }

 /* Responsive */


 /* Menu */
 .nav-links a:after {
     background: none repeat scroll 0 0 transparent;
     bottom: 0;
     content: "";
     display: block;
     height: 2px;
     left: 50%;
     position: absolute;
     background: #008000;
     transition: width 0.3s ease 0s, left 0.3s ease 0s;
     width: 0;
 }

 .nav-links a:hover:after {
     width: 100%;
     left: 0;
 }



 .services-section {
     padding: 40px 20px;
 }

 .services-section.about-service .container {
     max-width: 1400px;
     margin: auto;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .service-card {
     background: #fff;
     overflow: hidden;
     position: relative;
     transition: .4s ease;
 }

 .service-image {
     overflow: hidden;
 }

 .service-image img {
     width: 100%;
     height: 370px;
     object-fit: cover;
     display: block;
     transition: .6s ease;
 }

 .service-content {
     position: relative;
     padding: 35px 30px 40px;
     text-align: center;
     background: #f2f2f2;
     overflow: hidden;
     z-index: 1;
 }

 /* Green Overlay Animation */
 .service-content::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: #28a745;
     z-index: -1;
     transition: height .5s ease;
 }

 .service-card:hover .service-content::before {
     height: 100%;
 }

 .service-content h3 {
     font-size: 22px;
     color: #0f1d3a;
     margin-bottom: 20px;
     transition: .4s;
 }

 .service-content p {
     font-size: 17px;
     line-height: 1.8;
     color: #7a7a7a;
     margin-bottom: 25px;
     transition: .4s;
 }



 /* Hover Effects */
 .service-card:hover .service-content h3,
 .service-card:hover .service-content p,
 .service-card:hover .read-more {
     color: #fff;
 }

 .service-card:hover .service-image img {
     transform: scale(1.08);
 }

 .service-card:hover .read-more span {
     transform: translateX(8px);
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
 }




 .website-process {
     padding: 30px 0;
 }

 .website-process .container {
     width: 1320px;
     max-width: 100%;
     margin: auto;
 }

 .website-process .section-heading {
     text-align: center;
     margin-bottom: 60px;
 }

 /* .website-process .section-heading h2 {
     font-size: 52px;
     line-height: 1.2;
     color: #123c28;
     font-weight: 700;
 } */

 .website-process .process-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: start;
 }

 /* LEFT */

 .website-process .process-feature {
     background: #eefcf5;
     border-radius: 24px;
     padding: 24px;
 }

 .website-process .feature-image {
     overflow: hidden;
     border-radius: 20px;
 }

 .website-process .feature-image img {
     width: 100%;
     display: block;
     border-radius: 20px;
     object-fit: cover;
 }

 .website-process .feature-content {
     padding-top: 25px;
 }

 .website-process .feature-content h3 {
     font-size: 38px;
     margin-bottom: 15px;
     color: #123c28;
 }

 .website-process .feature-content p {
     font-size: 18px;
     line-height: 1.8;
     color: #555;
 }

 /* RIGHT */

 .website-process .process-list {
     display: flex;
     flex-direction: column;
     gap: 22px;
 }

 .website-process .process-card {
     display: flex;
     align-items: center;
     background: #eefcf5;
     border-radius: 22px;
     padding: 18px;
     transition: .35s;
 }

 .website-process .process-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
 }

 .website-process .card-image {
     width: 165px;
     flex-shrink: 0;
     overflow: hidden;
     border-radius: 18px;
 }

 .website-process .card-image img {
     width: 100%;
     height: 130px;
     object-fit: cover;
     display: block;
 }

 .website-process .card-content {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     padding-left: 22px;
 }

 .website-process .step-number {
     width: 54px;
     height: 54px;
     min-width: 54px;
     border-radius: 50%;
     background: #d6f4e2;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 22px;
     color: #123c28;
 }

 .website-process .text h4 {
     font-size: 30px;
     margin-bottom: 12px;
     color: #123c28;
 }

 .website-process .text p {
     font-size: 17px;
     line-height: 1.7;
     color: #555;
 }

 /* Button */

 .website-process .process-btn {
     text-align: center;
     margin-top: 60px;
 }

 .website-process .cta-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 18px 42px;
     background: #0c6b43;
     color: #fff;
     text-decoration: none;
     border-radius: 10px;
     font-size: 20px;
     font-weight: 600;
     transition: .3s;
 }

 .website-process .cta-btn:hover {
     background: #084f31;
     transform: translateY(-3px);
 }

 /* .website-design-stats .stats-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
 } */

 .website-secign-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
 }

 /* Responsive */





 .industry-section {
     padding: 80px 0;
 }

 .industry-section .container {
     width: 1320px;
     max-width: 100%;
     margin: auto;
 }

 .industry-section .industry-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     background: #eefcf5;
     padding: 55px;
     border-radius: 25px;
     align-items: center;
 }

 /* Left */

 .industry-section .industry-left .sub-title {
     display: inline-block;
     color: #3c8b54;
     font-size: 15px;
     background: #d9f8df;
     padding: 8px 16px;
     border-radius: 30px;
     margin-bottom: 20px;
     font-weight: 600;
 }

 /* .industry-section .industry-left h2 {
     font-size: 46px;
     color: #163b2a;
     line-height: 1.2;
     margin-bottom: 20px;
 } */

 .industry-section .industry-left p {
     font-size: 17px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 35px;
 }

 .industry-section .industry-btn {
     display: inline-block;
     text-decoration: none;
     background: #0c6b43;
     color: #fff;
     padding: 16px 32px;
     border-radius: 8px;
     font-weight: 700;
     transition: .3s;
 }

 .industry-section .industry-btn:hover {
     background: #9bdd25;
 }

 /* Accordion */

 .industry-section .accordion-item {
     background: #fff;
     border-radius: 12px;
     margin-bottom: 15px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
 }

 .industry-section .accordion-title {
     width: 100%;
     border: none;
     background: #fff;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     padding: 20px 25px;
     font-size: 18px;
     font-weight: 600;
     color: #173c2a;
 }

 .industry-section .accordion-title span:last-child {
     font-size: 26px;
     color: #59b36b;
     transition: .3s;
 }

 .industry-section .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: .4s;
 }

 .industry-section .accordion-content p {
     padding: 0 25px 22px;
     color: #666;
     line-height: 1.8;
     font-size: 16px;
 }

 .industry-section .accordion-item.active .accordion-content {
     max-height: 250px;
 }

 .industry-section .accordion-item.active .accordion-title span:last-child {
     transform: rotate(45deg);
 }

 /* Responsive */



 /* WEB DEVELOPMENT */
 .web-dev-services .container {
     width: min(1320px, 92%);
     margin: auto;
     padding: 60PX;
 }

 .web-dev-services .services {
     padding: 80px 0
 }

 .web-dev-services .section-title {
     text-align: center;
     margin-bottom: 50px
 }

 .web-dev-services .section-title span {
     color: #16a34a;
     font-weight: 700
 }

 .web-dev-services .section-title h1 {
     font-size: 52px;
     line-height: 1.15;
     margin: 15px 0
 }

 .web-dev-services .section-title h1 strong {
     color: #16a34a
 }

 .web-dev-services .section-title p {
     max-width: 760px;
     margin: auto;
     color: #555
 }

 .web-dev-services .grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px
 }

 .web-dev-services .card {
     position: relative;
     background: #fff;
     border-radius: 20px;
     padding: 20px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
     transition: .3s
 }

 .web-dev-services .card:hover {
     transform: translateY(-8px)
 }


 .web-dev-services .icon {
     width: 40px;
     height: 40px;
     border-radius: 18px;
     background: #eef8ff;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #16a34a;
     font-size: 42px;
     margin-bottom: 20px;
 }

 .web-dev-services .icon i {
     font-size: 20px;
 }

 .web-dev-services .card h3 {
     font-size: 22px;
     margin-bottom: 12px;
     line-height: 1;
 }

 .web-dev-services .card p {
     line-height: 1.8;
     color: #666;
     min-height: 95px
 }

 .web-dev-services .tags {
     display: flex;
     justify-content: space-between;
     border-top: 1px solid #eee;
     padding-top: 16px;
     color: #16a34a;
     font-weight: 700
 }

 .web-dev-services .cta-wrap {
     text-align: center;
     margin-top: 50px
 }

 .web-dev-services .cta {
     display: inline-flex;
     gap: 10px;
     align-items: center;
     background: #16a34a;
     color: #fff;
     text-decoration: none;
     padding: 18px 40px;
     border-radius: 60px;
     font-weight: 700;
     font-size: 20px
 }




 .about-expertise {
     padding: 70px 20px
 }

 .about-expertise .container {
     max-width: 1320px;
     width: 100%;
     margin: auto;
     background: #fff;
     display: grid;
     grid-template-columns: 1fr 1fr;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .08)
 }

 .about-expertise .section-heading img {
     width: 100%;
 }

 .about-expertise .left,
 .about-expertise .right {
     padding: 40px
 }

 .about-expertise h2 {
     font-size: 34px;
     margin-bottom: 24px;
     color: #14213d
 }

 .about-expertise .left img {
     width: 100%;
     height: 320px;
     object-fit: cover
 }

 .about-expertise .grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     row-gap: 10px;
     column-gap: 20px;
     margin-bottom: 35px
 }

 .about-expertise .grid p {
     font-size: 15px;
 }

 .about-expertise .item {
     display: flex;
     gap: 14px
 }

 .about-expertise .item .icon i {
     font-size: 20px;
 }

 .about-expertise .icon {
     width: 30px;
     height: 30px;

     display: flex;
     align-items: center;
     justify-content: center;
     color: #16a34a
 }

 .about-expertise .btn {
     display: inline-block;
     padding: 14px 28px;
     background: #16a34a;
     color: #fff;
     text-decoration: none;
     border-radius: 4px
 }


 /* Why choose */
 .why-choose-houston {
     padding: 80px 20px
 }

 /* .why-choose-houston .container {
     max-width: 1200px;
     margin: auto
 } */

 .why-choose-houston .heading {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 50px
 }

 .why-choose-houston .heading span {
     font-size: 12px;
     color: #6aa
 }

 .why-choose-houston .heading h2 {
     font-size: 42px;
     margin: 12px 0
 }

 .why-choose-houston .heading p {
     color: #666;
     line-height: 1.8
 }

 .why-choose-houston .cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px
 }

 .why-choose-houston .card {
     background: #eefcf5;
     border-radius: 18px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
     transition: .3s
 }

 .why-choose-houston .card:hover {
     transform: translateY(-8px)
 }

 .why-choose-houston .card img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     display: block
 }

 .why-choose-houston .icon {
     position: absolute;
     top: 15px;
     right: 15px;
     width: 30px;
     height: 30px;
     background: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #16a34a;
     box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
 }

 .why-choose-houston .icon i {
     font-size: 15px;
 }

 .why-choose-houston .content {
     background: #fff;
     margin: 0 16px 16px;
     border-radius: 14px;
     padding: 20px;
     transform: translateY(-30px)
 }

 .why-choose-houston .content h3 {
     margin-bottom: 10px;
     font-size: 22px
 }

 .why-choose-houston .content p {
     color: #666;
     line-height: 1.7
 }


 /* Industry specific */
 /* --- Base Styling Rules --- */
 :root {
     --primary-color: #16a34a;
     --accent-color: #16a34a;
     /* Yellow highlight color from your image */
     --text-muted: #666666;
     --bg-light: #f9f9f9;
     --border-radius: 16px;
     --font-stack: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }



 /* --- Section Container Layout --- */
 /* .industry-services-section .services-section {
     padding: 80px 24px;
     max-width: 1200px;
     margin: 0 auto;
 } */

 .industry-services-section .services-container {
     max-width: 1320px;
     width: 100%;
     margin: auto;
 }

 /* --- Header Layout --- */
 .industry-services-section .services-header {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: flex-end;
     gap: 32px;
     margin-bottom: 60px;
 }

 .industry-services-section .header-left {
     flex: 1 1 500px;
 }

 .industry-services-section .subheading {
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 2px;
     color: var(--text-muted);
     font-weight: 600;
     display: block;
     margin-bottom: 12px;
 }

 .industry-services-section .header-left h1 {
     font-size: 38px;
     line-height: 1.2;
     font-weight: 800;
 }

 .industry-services-section .header-right {
     flex: 1 1 400px;
     color: var(--text-muted);
     font-size: 16px;
 }

 /* --- Content Split Grid --- */
 .industry-services-section .services-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: start;
 }



 /* --- Left Column: Photo & Stat Collage --- */
 .industry-services-section .collage-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     position: relative;
 }

 .industry-services-section .collage-grid img {
     width: 100%;
 }

 .industry-services-section .image-card {
     border-radius: var(--border-radius);
     background-size: cover;
     background-position: center;
     min-height: 200px;
 }

 /* Temporary background placeholders to emulate your structure */
 .industry-services-section .bg-placeholder-1 {
     grid-row: span 2;
 }

 .industry-services-section .bg-placeholder-3 {
     grid-column: span 2;
 }

 /* The Yellow Floating Stat Badge */
 .industry-services-section .stats-badge {
     position: absolute;
     top: 35%;
     left: 50%;
     transform: translate(-50%, -50%);
     background-color: var(--accent-color);
     padding: 30px 24px;
     border-radius: var(--border-radius);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     width: 180px;
     display: flex;
     flex-direction: column;
     gap: 24px;
     z-index: 2;
 }

 .industry-services-section .stat-item {
     display: flex;
     flex-direction: column;
     text-align: center;
 }

 .industry-services-section .stat-number {
     font-size: 32px;
     font-weight: 800;
     line-height: 1;
 }

 .industry-services-section .stat-label {
     font-size: 12px;
     font-weight: 600;
     color: #222;
     margin-top: 4px;
 }

 /* --- Right Column: Sector Features List --- */
 .industry-services-section .features-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-top: 0;
 }

 .industry-services-section {
    padding: 40px 0;
 }
 .industry-services-section .features-list li {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     padding: 0;
 }

 .industry-services-section .feature-icon {
     background-color: var(--bg-light);
     font-size: 24px;
     width: 56px;
     height: 56px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .industry-services-section .feature-text h3 {
     font-size: 16px;
     font-weight: 700;
 }

 .industry-services-section .feature-text p {
     color: var(--text-muted);
     font-size: 15px;
     margin-bottom: 0;
 }

 /* --- Features Footer & CTA --- */
 .industry-services-section .features-footer {
     margin-top: 40px;
     padding-top: 30px;
     border-top: 1px solid #eee;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 32px;
 }

 .industry-services-section .btn-primary {
     display: inline-block;
     background-color: var(--primary-color);
     color: #ffffff;
     padding: 14px 32px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     transition: opacity 0.2s ease;
 }

 .industry-services-section .btn-primary:hover {
     opacity: 0.9;
 }

 .industry-services-section .phone-contact {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .industry-services-section .phone-icon {
     color: var(--accent-color);
     font-size: 20px;
     background: var(--primary-color);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .industry-services-section .phone-text {
     display: flex;
     flex-direction: column;
 }

 .industry-services-section .phone-number {
     font-size: 18px;
     font-weight: 700;
     color: var(--primary-color);
     text-decoration: none;
     line-height: 1.2;
 }

 .industry-services-section .phone-label {
     font-size: 12px;
     color: var(--text-muted);
 }

 .houston-service .stats-grid {
     grid-template-columns: repeat(4, 1fr);
 }



 /* --- Custom Variables & Styling Foundations --- */
 :root {
     --radius-lg: 12px;
     --radius-md: 8px;
     --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
     --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
 }



 /* --- Container Framework --- */
 .optimization-section {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 24px;
 }

 .optimization-section .opt-container {
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 /* --- Header Component --- */
 .optimization-section .opt-header {
     text-align: center;
     max-width: 900px;
     margin: 0 auto 10px auto;
 }

 .optimization-section .opt-subheading {
     font-size: 20px;
     font-weight: 500;
     color: var(--color-text-dark);
     display: block;
     margin-bottom: 12px;
 }

 .optimization-section .text-green {
     color: var(#117822);
     font-weight: 700;
 }

 .optimization-section .opt-header h1 {
     font-size: 42px;
     font-weight: 800;
     letter-spacing: -0.5px;
     margin-bottom: 24px;
     line-height: 1.2;
 }

 .optimization-section .opt-lead {
     font-size: 16px;
     color: var(#555e58);
     line-height: 1.7;
 }

 /* --- Main Columns Grid Layout --- */
 .optimization-section .opt-grid {
     display: grid;
     grid-template-columns: 420px 1fr;
     gap: 32px;
     align-items: stretch;
 }



 /* --- Left Side: Cards Container --- */
 .optimization-section .opt-cards-col {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .optimization-section .opt-card {
     display: flex;
     background-color: #ffffff;
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-soft);
     align-items: center;
 }

 .optimization-section .card-icon-box {
     background-color: #0b661a;
     width: 100px;
     align-self: stretch;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .optimization-section .card-icon-box svg {
     width: 38px;
     height: 38px;
     fill: #fff;
     stroke: #fff;
 }

 .optimization-section .card-content {
     padding: 15px;
     flex-grow: 1;
 }

 .optimization-section .card-content h2 {
     font-size: 16px;
     font-weight: 800;
     color: #0b661a;
     margin-bottom: 8px;
     letter-spacing: 0.5px;
 }

 .optimization-section .card-content p {
     font-size: 14px;
     color: #555e58;
     line-height: 1.5;
     margin-bottom: 0;
 }

 .optimization-section .card-content a {
     color: #0b661a;
     text-decoration: none;
     font-weight: 700;
 }

 .optimization-section .card-content a:hover {
     text-decoration: underline;
 }

 /* --- Right Side: Video Feature Component --- */
 .optimization-section .opt-video-col {
     display: flex;
 }

 .optimization-section .video-preview-wrapper {
     position: relative;
     width: 100%;
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-soft);
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .optimization-section .video-bg-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* Fallback color and mock image presentation matching the design screenshot */
     background-color: #3a5c43;
     background-image: linear-gradient(to right, rgba(11, 102, 26, 0.2), transparent),
         url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1200&q=80');
     background-size: cover;
     background-position: center;
     z-index: 1;
 }

 .optimization-section .video-overlay-gradient {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 70%;
     background: linear-gradient(to top, rgba(11, 102, 26, 0.95) 0%, rgba(11, 102, 26, 0.6) 50%, transparent 100%);
     z-index: 2;
 }

 /* Play Button Control */
 .optimization-section .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -70%);
     width: 84px;
     height: 84px;
     background-color: rgba(255, 255, 255, 0.15);
     border: 3px solid #ffffff;
     border-radius: 50%;
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 3;
     transition: transform 0.2s ease, background-color 0.2s ease;
     padding-left: 6px;
     /* Balance standard play polygon optics */
 }

 .optimization-section .play-btn:hover {
     transform: translate(-50%, -70%) scale(1.08);
     background-color: rgba(255, 255, 255, 0.25);
 }

 .optimization-section .play-btn svg {
     width: 32px;
     height: 32px;
 }

 /* Text Overlay Block */
 .optimization-section .video-caption-text {
     position: relative;
     z-index: 3;
     padding: 40px;
     color: #ffffff;
     text-align: center;
 }

 .optimization-section .video-caption-text p {
     font-size: 20px;
     font-weight: 300;
     line-height: 1.6;
     letter-spacing: 0.2px;
 }

 .optimization-section .video-caption-text strong {
     font-weight: 700;
 }



 /* --- Bottom Button Actions --- */
 .optimization-section .opt-footer-action {
     text-align: center;
     margin-top: 10px;
 }

 .optimization-section .btn-manage-site {
     background-color: var(#0b661a);
     color: #ffffff;
     border: none;
     border-radius: var(--radius-md);
     padding: 18px 40px;
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.5px;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     box-shadow: 0 4px 12px rgba(11, 102, 26, 0.2);
     transition: background-color 0.2s ease, transform 0.1s ease;
 }

 .optimization-section .btn-manage-site:hover {
     background-color: #0b661a;
 }

 .optimization-section .btn-manage-site:active {
     transform: scale(0.98);
 }

 .optimization-section .gear-icon {
     width: 20px;
     height: 20px;
     animation: spin 12s linear infinite;
 }

 @keyframes spin {
     100% {
         transform: rotate(360deg);
     }
 }

 .service-who-we-are .section-heading,
 .service-who-we-are .section-heading p {
     max-width: 1200px;
 }

 /* Service Hub */
 /* --- Styling Variables & Essentials --- */
 :root {
     --green-primary: #10721e;
     --green-dark: #094f13;
     --green-bg-tint: #e6f4ea;
     --text-main: #0f1c13;
     --text-body: #4a574e;
     --bg-surface: #ffffff;
     --radius-panel: 16px;
     --radius-badge: 12px;
     --font-base: 'Inter', system-ui, -apple-system, sans-serif;
     --shadow-panel: 0 12px 40px rgba(0, 0, 0, 0.04);
 }


 /* --- Container Core Rules --- */
 .services-hub {
     padding: 40px 24px;
     max-width: 1300px;
     margin: 0 auto;
     overflow: hidden;
 }

 .services-hub .hub-container {
     display: grid;
     grid-template-columns: 1.1fr 1.2fr;
     gap: 60px;
     align-items: start;
 }


 /* --- Left Column Layout Structure --- */
 .services-hub .hub-left-col {
     display: flex;
     flex-direction: column;
 }

 .services-hub .hub-header .hub-tagline {
     font-size: 13px;
     font-weight: 800;
     color: var(--green-primary);
     letter-spacing: 1.5px;
     display: block;
     margin-bottom: 16px;
 }

 .services-hub .hub-header h1 {
     font-size: 44px;
     font-weight: 800;
     line-height: 1.15;
     letter-spacing: -0.5px;
     margin-bottom: 24px;
 }

 .hub-header p {
     margin-bottom: 0;
 }

 .services-hub .text-green {
     color: var(--green-primary);
 }

 .services-hub .hub-header p {
     color: var(--text-body);
     font-size: 16px;
     line-height: 1.65;
 }

 /* --- Advanced Image Layer Showcase --- */
 .services-hub .mockup-showcase {
     position: relative;
     padding: 0;
     margin-top: 0;
 }

 .services-hub .bg-glow-shape {
     position: absolute;
     width: 320px;
     height: 320px;
     background-color: #e3f2e6;
     border-radius: 50%;
     filter: blur(40px);
     top: 10%;
     left: -10%;
     z-index: 1;
 }

 .services-hub .dot-pattern {
     position: absolute;
     width: 90px;
     height: 90px;
     background-image: radial-gradient(#b8daba 2px, transparent 2px);
     background-size: 14px 14px;
     top: 0;
     left: -30px;
     z-index: 1;
 }

 .services-hub .laptop-wrapper {
     position: relative;
     z-index: 2;
     /* max-width: 85%; */
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
     border: 4px solid #111;
     background-color: #000;
 }

 .services-hub .laptop-screen-img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* --- Floating Badges Architecture --- */
 .services-hub .floating-badge {
     position: absolute;
     background: var(--bg-surface);
     border-radius: var(--radius-badge);
     padding: 20px;
     box-shadow: 0 15px 35px rgba(15, 28, 19, 0.08);
     display: flex;
     gap: 14px;
     width: 230px;
     z-index: 3;
 }

 .services-hub .badge-top {
     right: 5%;
     top: 12%;
 }

 .services-hub .badge-bottom {
     right: 2%;
     bottom: 5%;
 }



 .services-hub .badge-icon {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .services-hub .icon-speed {
     background-color: #f1f9f3;
     color: var(--green-primary);
 }

 .services-hub .icon-seo {
     background-color: #fef8eb;
     color: #d97706;
 }

 .services-hub .badge-icon svg {
     width: 22px;
     height: 22px;
 }

 .services-hub .badge-meta {
     display: flex;
     flex-direction: column;
 }

 .services-hub .badge-stat {
     font-size: 24px;
     font-weight: 800;
     line-height: 1.1;
 }

 .services-hub .badge-title {
     font-size: 13px;
     font-weight: 700;
     margin: 4px 0 2px 0;
 }

 .services-hub .badge-desc {
     font-size: 11px;
     color: var(--text-body);
     line-height: 1.3;
 }

 /* --- Right Column Layout Structure --- */
 .services-hub .hub-right-col {
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 .services-hub .service-box {
     background: var(--bg-surface);
     border-radius: var(--radius-panel);
     padding: 25px;
     box-shadow: var(--shadow-panel);
     border: 1px solid rgba(16, 114, 30, 0.04);
 }


 .services-hub .service-box-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }

 .services-hub .service-illustration {
     background-color: var(--green-bg-tint);
     color: var(--green-primary);
     width: 56px;
     height: 56px;
     border-radius: var(--radius-badge);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .services-hub .service-illustration svg {
     width: 28px;
     height: 28px;
 }

 .services-hub .service-title-area h2 {
     font-size: 22px;
     font-weight: 800;
 }

 .services-hub .accent-line {
     width: 32px;
     height: 3px;
     background-color: var(--green-primary);
     margin-top: 8px;
 }

 .services-hub .service-description {
     color: var(--text-body);
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 0px;
 }

 /* Feature Checklists Setup */
 .services-hub .checkmark-grid {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 14px 24px;
 }



 .services-hub .checkmark-grid li {
     font-size: 14.5px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .services-hub .check-icon {
     background-color: var(--green-primary);
     color: #ffffff;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     font-weight: bold;
 }

 /* --- Actions Footer Architecture --- */
 .services-hub .hub-actions-footer {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
     margin-top: 12px;
 }

 .services-hub .btn-cta-submit {
     background-color: var(--green-primary);
     color: #ffffff;
     border: none;
     border-radius: 8px;
     padding: 18px 48px;
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.5px;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     box-shadow: 0 6px 20px rgba(16, 114, 30, 0.2);
     transition: background-color 0.2s, transform 0.1s;
     width: max-content;
 }



 .services-hub .btn-cta-submit:hover {
     background-color: var(--green-dark);
 }

 .services-hub .btn-cta-submit:active {
     transform: scale(0.99);
 }

 .services-hub .sync-icon {
     width: 18px;
     height: 18px;
 }

 .services-hub .trust-badge {
     font-size: 13px;
     font-weight: 500;
     color: var(--text-body);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .services-hub .cta-wrap {
     margin-top: 15px;
 }


 /* --- Core Configurations --- */
 :root {
     --sp-bg-main: #0a0f0d;
     /* Midnight slate deep background */
     --sp-bg-card: #0d1612;
     /* Tinted subtle panel fill */
     --sp-green-bright: #4fb936;
     /* Vivid chartreuse-green highlights */
     --sp-green-dark: #2d731e;
     /* Deep base green */
     --sp-text-pure: #ffffff;
     --sp-text-muted: #95a39a;
     --sp-border-glow: rgba(79, 185, 54, 0.08);
     --sp-radius: 14px;
     --sp-font: 'Inter', system-ui, -apple-system, sans-serif;
 }



 .services-premium-section {
     background-color: var(--sp-bg-main);
     /* Elegant ambient depth styling matching screenshot overlays */
     background-image:
         radial-gradient(circle at 90% 10%, rgba(45, 115, 30, 0.12) 0%, transparent 45%),
         radial-gradient(circle at 10% 90%, rgba(13, 22, 18, 0.6) 0%, transparent 50%);
     color: var(--sp-text-pure);
     font-family: var(--sp-font);
     padding: 60px 24px;
     overflow: hidden;
 }

 .services-premium-section .sp-container {
     max-width: 1320px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.25fr;
     gap: 64px;
     align-items: center;
 }



 /* --- Left Column Interface --- */
 .services-premium-section .sp-left-panel {
     display: flex;
     flex-direction: column;
 }

 .services-premium-section .sp-tagline {
     font-size: 14px;
     font-weight: 700;
     color: var(--sp-green-bright);
     letter-spacing: 1px;
     display: block;
 }

 .services-premium-section .sp-title-line {
     width: 34px;
     height: 2px;
     background-color: var(--sp-green-bright);
     margin: 10px 0 24px 0;
 }

 .services-premium-section .sp-header h2 {
     font-size: 35px;
     font-weight: 800;
     line-height: 1.15;
     letter-spacing: -0.5px;
     margin-bottom: 28px;
 }

 .services-premium-section .text-green {
     color: var(--sp-green-bright);
 }

 .services-premium-section .sp-lead {
     color: #fff;
     font-size: 16px;
     line-height: 1.65;
     max-width: 520px;
 }

 /* Horizontal Sub-features Setup */
 .services-premium-section .sp-mini-features {
     display: flex;
     gap: 28px;
     margin: 44px 0;
     border-top: 1px solid rgba(149, 163, 154, 0.1);
     padding-top: 32px;
 }



 .services-premium-section .mini-feature-item {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .services-premium-section .mini-icon-box {
     color: var(--sp-green-bright);
     background-color: rgba(79, 185, 54, 0.08);
     border: 1px solid rgba(79, 185, 54, 0.2);
     width: 48px;
     height: 48px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .services-premium-section .mini-icon-box svg {
     width: 22px;
     height: 22px;
 }

 .services-premium-section .mini-feature-item span {
     font-size: 13.5px;
     font-weight: 600;
     line-height: 1.4;
     color: #e2e8f0;
 }

 /* CTA Pill Action Button */
 .services-premium-section .sp-action-area {
     margin: 12px 0;
 }

 .services-premium-section .btn-premium-cta {
     display: inline-flex;
     align-items: center;
     gap: 16px;
     background-color: var(--sp-green-dark);
     color: var(--sp-text-pure);
     text-decoration: none;
     font-weight: 700;
     font-size: 16px;
     padding: 16px 36px;
     border-radius: 30px;
     box-shadow: 0 4px 20px rgba(45, 115, 30, 0.25);
     transition: background-color 0.2s ease, transform 0.2s ease;
 }

 .services-premium-section .btn-premium-cta:hover {
     background-color: var(--sp-green-bright);
     transform: translateY(-2px);
 }

 .services-premium-section .arrow-icon {
     width: 18px;
     height: 18px;
 }

 /* --- Right Column: Grid Blocks Matrix --- */
 .services-premium-section .sp-right-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
 }



 .services-premium-section .sp-service-card {
     position: relative;
     background-color: var(--sp-bg-card);
     border: 1px solid var(--sp-border-glow);
     border-radius: var(--sp-radius);
     padding: 40px 32px 32px 32px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     transition: border-color 0.3s ease, transform 0.3s ease;
 }

 .services-premium-section .sp-service-card:hover {
     border-color: rgba(79, 185, 54, 0.4);
     transform: scale(1.02);
 }

 /* Floating Step Identifier Counter */
 .services-premium-section .card-step-badge {
     position: absolute;
     top: 16px;
     left: 16px;
     background-color: var(--sp-green-bright);
     color: var(--sp-bg-main);
     font-size: 11px;
     font-weight: 800;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Card Icons Area */
 .services-premium-section .card-main-icon {
     width: 68px;
     height: 68px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.08);
     color: var(--sp-green-bright);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .services-premium-section .card-main-icon svg {
     width: 30px;
     height: 30px;
 }

 .services-premium-section .sp-service-card h3 {
     font-size: 18px;
     font-weight: 700;
     letter-spacing: -0.2px;
 }

 .services-premium-section .card-accent-line {
     width: 20px;
     height: 2px;
     background-color: var(--sp-green-bright);
     margin: 12px 0 16px 0;
 }

 .services-premium-section .sp-service-card p {
     color: #fff;
     font-size: 13.5px;
     line-height: 1.6;
 }




 /* Main Container */
 .promo-container {
     position: relative;
     width: 100%;
     max-width: 1100px;
     border-radius: 12px;
     margin: auto;
     overflow: hidden;
     display: grid;
     grid-template-columns: 1fr 1fr;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 /* Left Column (Background Accent) */
 .left-panel {
     background-color: #064e1b;
     position: relative;
     padding: 60px 40px 120px 60px;
     display: flex;
     align-items: center;
 }

 /* Decorative Dot Grid */
 .dot-grid {
     position: absolute;
     width: 80px;
     height: 80px;
     background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
     background-size: 16px 16px;
 }

 .dot-grid-top {
     top: 30px;
     left: 30px;
 }

 .dot-grid-bottom {
     bottom: 30px;
     left: 30px;
 }

 /* White Content Card */
 .content-card {
     background-color: #ffffff;
     padding: 50px;
     border-radius: 4px;
     width: 115%;
     /* Overlaps slightly into the right panel */
     z-index: 2;
     box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
 }

 .tagline {
     color: #0a7328;
     font-size: 0.85rem;
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 20px;
     display: inline-block;
     border-bottom: 2px solid #0a7328;
     padding-bottom: 4px;
 }

 .title {
     color: #1f2937;
     font-size: 2.8rem;
     font-weight: 700;
     line-height: 1.15;
     margin-bottom: 24px;
 }

 .title span {
     color: #064e1b;
 }

 .description {
     color: #1f2937;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 0px;
 }

 /* CTA Buttons */
 .cta-group {
     display: flex;
     align-items: center;
     gap: 25px;
 }

 .btn-contact {
     background-color: #064e1b;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.9rem;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: background 0.2s ease;
 }

 .btn-contact:hover {
     background-color: #0a7328;
 }

 .btn-video {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     color: #1f2937;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .play-icon {
     width: 40px;
     height: 40px;
     background-color: #ffffff;
     border: 1px solid #e5e7eb;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #064e1b;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     transition: transform 0.2s ease;
 }

 .btn-video:hover .play-icon {
     transform: scale(1.05);
 }

 /* Right Column (Image Banner) */
 .right-panel {
     position: relative;
     background-image: url('https://images.unsplash.com/photo-1600132806370-bf17e65e942f?q=80&w=1200&auto=format&fit=crop');
     /* Placeholder Server Room Image */
     background-size: cover;
     background-position: center;
 }

 /* Features Overlap Bar */
 .features-bar {
     position: absolute;
     bottom: 30px;
     right: 30px;
     left: -10%;
     /* Pulls left to align dynamically under the card layout */
     background-color: #ffffff;
     border-radius: 8px;
     padding: 20px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     z-index: 3;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }
     .nav-links li:last-child{
        text-decoration: none;
     }
     p {
        margin-bottom: 10px;
     }

.techical-support-hero {
    background-image: url(/assets/img/technical-support-banner.webp);
}
.wordpress-banner {
    background-image: url(/assets/img/Enterprise-WordPress-Hosting-In-Houston.webp);
}
.dedicated-banner {
        background-image: url(/assets/img/dedicated-banner.webp);

}
.cloud-banner {
          background-image: url(/assets/img/Cloud-Hosting-Services-Houston.webp);
  
}

 /* Divider lines between features */
 .feature-item:not(:last-child)::after {
     content: '';
     position: absolute;
     right: 0;
     top: 15%;
     height: 70%;
     width: 1px;
     background-color: #e5e7eb;
 }

 .feature-item i {
     font-size: 1.5rem;
     color: #0a7328;
     margin-bottom: 10px;
     display: block;
 }

 .feature-item p {
     font-size: 0.8rem;
     color: #1f2937;
     font-weight: 600;
     line-height: 1.3;
 }

 /* Responsive Design */


 /* Container section with a background image placeholder matching image_119ade.png */
 .promo-banner-section {
     position: relative;
     padding: 40px 20px;
     background: url('assets/img/houston-bg-placeholder.jpg') center/cover no-repeat;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* White overlapping card */
 .promo-banner-section .promo-card {
     background: #ffffff;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     max-width: 1140px;
     width: 100%;
     padding: 40px 50px;
     display: flex;
     gap: 40px;
     align-items: center;
     box-sizing: border-box;
 }

 /* Left side layout */
 .promo-banner-section .promo-left {
     flex: 1.2;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .promo-banner-section .promo-tagline {
     font-size: 12px;
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: 1px;
     color: #0a7328;
     /* Subdued accent color */
     background-color: #fdf2ec;
     /* Soft background tint */
     padding: 4px 8px;
     align-self: flex-start;
     border-radius: 4px;
 }

 .promo-banner-section .promo-heading {
     font-size: 36px;
     font-weight: 800;
     color: #111111;
     line-height: 1.2;
     margin: 0;
 }

 /* Right side layout */
 .promo-banner-section .promo-right {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .promo-banner-section .promo-description {
     font-size: 15px;
     color: #555555;
     line-height: 1.6;
     margin: 0;
 }

 /* Vivid CTA Button matching the style in image_119ade.png */
 .promo-banner-section .promo-cta-btn {
     display: inline-block;
     background-color: #0a7328;
     /* Striking orange accent */
     color: #ffffff;
     text-transform: uppercase;
     text-decoration: none;
     font-weight: 700;
     font-size: 14px;
     letter-spacing: 0.5px;
     padding: 14px 28px;
     border-radius: 6px;
     align-self: flex-start;
     transition: background-color 0.2s ease;
 }

 .promo-banner-section .promo-cta-btn:hover {
     background-color: #0a7328;
 }

 /* Responsive adjustment for tablets and mobile screens */


 .hosting-section .container {
     width: min(1200px, 92%);
     margin: auto
 }

 .hosting-section {
     padding: 60px 0
 }

 .hosting-section .section-title {
     text-align: center;
     margin-bottom: 50px
 }

 .hosting-section .section-title h2 {
     font-size: 44px;
     color: #008000;
     margin-bottom: 15px
 }

 .hosting-section .section-title p {
     max-width: 760px;
     margin: auto;
     color: #666
 }

 .hosting-section .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px
 }

 .hosting-section .pricing-card {
     background: #fff;
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
     position: relative
 }

 .hosting-section .featured {
     border: 2px solid #008000;
     transform: scale(1.04)
 }

 .hosting-section .badge {
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background: #008000;
     color: #fff;
     padding: 8px 16px;
     border-radius: 30px
 }

 .hosting-section.plan-icon {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: #e9f7e9;
     color: #008000;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 34px;
     margin-bottom: 20px
 }

 .hosting-section h3 {
     font-size: 20px;
     margin-bottom: 10px
 }

 .hosting-section .desc {
     color: #666;
     line-height: 1.7;
     margin-bottom: 5%
 }

 .hosting-section ul {
     list-style: none
 }

 .hosting-section li {
     padding: 10px 0 10px 18px;
     border-bottom: 1px solid #eee;
     position: relative;
     text-align: left;
     font-size: 15px;
 }

 .hosting-section li:before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #008000;
     font-weight: bold
 }

 .hosting-section .btn {
     display: block;
     margin-top: 25px;
     background: #008000;
     color: #fff;
     text-decoration: none;
     text-align: center;
     padding: 15px;
     border-radius: 10px;
     font-weight: bold
 }



 .plan-price {
     color: #008000;
     font-size: 24px;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .wp-security-section {
     padding: 90px 0;
     background: #f8faf8;
 }

 .wp-security-section .wp-security-wrapper {
     display: grid;
     grid-template-columns: 480px 1fr;
     gap: 70px;
     align-items: center;
 }

 .wp-security-section.image-card {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
 }

 .wp-security-section .image-card img {
     width: 100%;
     display: block;
 }

 .wp-security-section .floating-card {
     position: absolute;
     left: 30px;
     bottom: 30px;
     width: 270px;
     background: #fff;
     border-radius: 18px;
     padding: 22px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
 }

 .wp-security-section .status {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 700;
     color: #222;
     margin-bottom: 18px;
 }

 .wp-security-section .status i {
     color: #008000;
     font-size: 22px;
 }

 .wp-security-section .floating-card ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .wp-security-section .floating-card li {
     display: flex;
     justify-content: space-between;
     padding: 12px 0;
     border-bottom: 1px solid #eee;
 }

 .wp-security-section .floating-card strong {
     color: #008000;
 }

 .wp-security-section .section-tag {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     border: 2px solid #00800033;
     color: #008000;
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 600;
     margin-bottom: 25px;
 }

 .wp-security-section .wp-security-content h2 {
     font-size: 42px;
     line-height: 1.15;
     margin-bottom: 20px;
     color: #111827;
 }

 .wp-security-section .wp-security-content h2 span {
     color: #008000;
     display: block;
 }

 .wp-security-section .heading-line {
     width: 90px;
     height: 4px;
     background: #008000;
     border-radius: 10px;
     margin: 30px 0;
 }

 .wp-security-section .intro {
     font-size: 18px;
     line-height: 1.9;
     color: #555;
     margin-bottom: 40px;
 }

 .wp-security-section.feature-box {
     display: flex;
     gap: 25px;
     align-items: flex-start;
     background: #fff;
     border: 1px solid #e6e6e6;
     border-radius: 18px;
     padding: 28px;
     margin-bottom: 22px;
     transition: .35s;
 }

 .wp-security-section.feature-box:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
 }

 .wp-security-section .feature-icon {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: #eef9ef;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #008000;
     font-size: 15px;
     flex-shrink: 0;
 }

 .wp-security-section .feature-box {
     display: flex;
     gap: 20px;
 }

 .wp-security-section .feature-content h4 {
     font-size: 18px;
     margin-bottom: 12px;
     color: #111827;
 }

 .wp-security-section.feature-content p {
     line-height: 1.8;
     color: #666;
 }


 .cloud-flow-section {
     padding: 60px 0;
     background: #f7faf8;
 }

 .cloud-flow-section .cloud-flow {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 18px;
     flex-wrap: nowrap;
 }

 .about-expertise.cloud-expertise .container {
     display: flex;
     flex-direction: column;
 }

 .cloud-expertise-btn .hero-buttons {
     justify-content: center;
 }

 .cloud-flow-section .flow-card {
     width: 270px;
     background: #fff;
     border: 2px solid #d9efe0;
     border-radius: 18px;
     padding: 35px 16px;
     text-align: center;
     position: relative;
     transition: .35s;
     box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
 }

 .cloud-flow-section .flow-card:hover {
     transform: translateY(-8px);
     border-color: #008000;
 }

 .cloud-flow-section .flow-icon {
     width: 60px;
     height: 60px;
     background: #fff;
     border: 2px solid #d9efe0;
     border-radius: 50%;
     margin: -75px auto 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #008000;
     font-size: 38px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
 }

 .cloud-flow-section .flow-card h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: #111;
 }

 .cloud-flow-section .flow-card p {
     color: #666;
     line-height: 1.7;
 }

 .cloud-flow-section .flow-arrow {
     font-size: 25px;
     color: #008000;
 }

 .cloud-flow-section .flow-result {
     margin: 70px auto 0;
     max-width: 900px;
     background: #fff;
     border: 2px solid #008000;
     border-radius: 18px;
     padding: 30px;
     display: flex;
     align-items: center;
     gap: 25px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
 }

 .cloud-flow-section .result-icon {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     background: #008000;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 40px;
     flex-shrink: 0;
 }

 .cloud-flow-section .flow-result h3 {
     font-size: 30px;
     color: #008000;
     margin-bottom: 10px;
 }

 .cloud-flow-section .flow-result p {
     color: #555;
     line-height: 1.7;
 }



 .technical-support-promo .content-card {
     padding: 30px;
 }

 .timeframe-section .timeframe {
     color: #008000;
     font-weight: 700;
 }

 .about-company {
     padding: 90px 0;
     background: #fff;
 }

 /* .about-company .container {
     width: 1200px;
     max-width: 90%;
     margin: auto;
 } */

 .about-company .about-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 70px;
     margin-bottom: 80px;
 }

 .about-company .about-row:last-child {
     margin-bottom: 0;
 }

 .about-company .about-row.reverse {
     flex-direction: row;
 }

 .about-company .about-content {
     flex: 1;
 }

 .about-company .about-image {
     flex: 1;
 }

 .about-company .about-image img {
     width: 100%;
     display: block;
     border-radius: 6px;
 }

 .about-company .about-content h2 {
     font-size: 34px;
     margin-bottom: 15px;
     color: #222;
 }

 .about-company .sub-title {
     display: block;
     color: #999;
     font-size: 15px;
     margin-bottom: 20px;
     line-height: 1.7;
 }

 .about-company .about-content p {
     color: #666;
     line-height: 1.8;
     margin-bottom: 18px;
 }

 .about-company .theme-btn {
     display: inline-block;
     background: #008000;
     color: #fff;
     text-decoration: none;
     padding: 12px 28px;
     border-radius: 30px;
     transition: .3s;
 }

 .about-company .theme-btn:hover {
     background: #008000;
 }



 .web-dev-services .read-more-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 20px;
     color: #fff;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .web-dev-services .read-more-btn::after {
     content: "\f061";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     font-size: 13px;
 }

 .web-dev-services .read-more-btn:hover {
     color: #006400;
     transform: translateX(4px);
 }
 .shared-hosting-banner {
     background-image: url('/assets/img/shared-hosting-banner.webp');

 }
 .vps-banner {
         background-image: url('/assets/img/houston-vps-hosting.webp');

 }

 /* .how-we-worh-section.services-hub .hub-container {
     gap: 15px;
 } */

 .how-we-worh-section .hub-left-col {
    max-width: 600px;
 }
 .hosting-feature-list {
     list-style: none;
     padding: 0;
     margin: 20px 0 0;
 }

 .hosting-feature-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 14px;
     line-height: 1.6;
 }

 .hosting-feature-list i {
     color: #008000;
     margin-top: 4px;
     font-size: 14px;
 }

 .card-icon-box i {
     font-size: 32px;
     color: #fff;
 }



 .contact-section {
     padding: 80px 0;
 }

 .contact-section .container {
     width: 1200px;
     max-width: 95%;
     margin: auto;

    
 }

 /*=========================
LEFT SIDE
=========================*/

 .contact-section .contact-info {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
     position: relative;
     z-index: 2;
 }

 .contact-section .info-card {

     background: #fff;


     padding: 20px 15px;

     text-align: center;

     display: flex;
     flex-direction: column;
     justify-content: center;

     box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
 }

 .contact-section .info-card i {

     font-size: 25px;

     color: #008000;

     margin-bottom: 0px;
 }

 .contact-section .info-card h3 {

     font-size: 16px;

     font-weight: 700;

     margin-bottom: 25px;

     color: #fff;
 }

 .contact-section .info-card p,
 .contact-section .info-card a {

     font-size: 15px;

     color: #000;

     text-decoration: none;

     line-height: 1.5;
 }

 /*=========================
RIGHT SIDE
=========================*/

 .contact-section .contact-form {

     background: #008000;

     padding: 80px 70px;

    

     box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
 }

 .contact-section .contact-form h2 {

     text-align: center;

     font-size: 35px;

     margin-bottom: 20px;

     color: #000;
 }

 .contact-section .contact-form input,
 .contact-section .contact-form textarea {

     width: 100%;

     border: none;

     background: #fff;

     padding: 18px 20px;

     margin-bottom: 25px;

     font-size: 18px;

     outline: none;
 }

 .contact-section .contact-form textarea {

     height: 160px;

     resize: none;
 }

 .contact-section .contact-form button {

     display: block;

     margin: 20px auto 0;



     background: #fff;

     border: 3px solid #008000;

     color: #008000;

     font-size: 20px;

     font-weight: 500;

     cursor: pointer;

     transition: .3s;
 }

 .contact-section .contact-form button:hover {

     background: #fff;

     color: #000;
 }

 /*=========================
Responsive
=========================*/



 .websie-optimization-section.optimization-section .opt-grid {
     grid-template-columns: 550px 1fr;
 }


 .terms-banner {
     background: #0d6e36;
     color: #fff;
     padding: 80px 20px;
     text-align: center;
 }


 .terms-banner h1 {
     font-size: 48px;
     margin-bottom: 10px;
 }

 .terms-banner-container p {
     font-size: 18px;
     opacity: .9;
 }

 .terms-banner-container .container {
     width: 1100px;
     max-width: 92%;
     margin: 60px auto;
 }

 .terms-banner-container .terms-content {
     background: #fff;
     padding: 50px;
     border-radius: 10px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
 }

 .terms-banner-container .terms-content h2 {
     font-size: 28px;
     margin: 40px 0 15px;
     color: #111;
 }

 .terms-banner-container .terms-content h3 {
     font-size: 22px;
     margin: 30px 0 12px;
     color: #008000;
 }

 .terms-banner-container .terms-content p {
     margin-bottom: 18px;
 }

 .terms-banner-container .terms-content ul {
     padding-left: 22px;
     margin: 20px 0;
 }

 .terms-banner-container .terms-content li {
     margin-bottom: 12px;
 }

 .terms-banner-container .intro {
     margin-bottom: 30px;
 }

 .terms-banner-container .contact-box {
     background: #f5f5f5;
     border-left: 5px solid #008000;
     padding: 25px;
     margin-top: 30px;
 }

 .terms-banner-container .contact-box h3 {
     margin-top: 0;
 }

 .terms-banner-container a {
     color: #008000;
     text-decoration: none;
 }

 .terms-banner-container a:hover {
     text-decoration: underline;
 }
 .hosting-premium-section .sp-top-row{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:10px;
    align-items:start;
}
 .hosting-premium-section .sp-top-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}
.hosting-premium-section .sp-bottom-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.hosting-premium-section .sp-container {
        grid-template-columns: 1fr;
        gap: 10px;
}