/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}






.logo {
    height: 30px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Add fallback for when image doesn't load */
.logo:not(:has(img[src])) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: #2c3e50;
}



.contact-btn {
    padding: 0.8rem 1.8rem;
    background-color: #3A3A3A;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #2A2A2A;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dark-text {
    color: #1a1a1a;
}

.blue-text {
    color: #3498db;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background: #2980b9;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-image {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .floating-image {
        width: 150px;
    }
}

@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .burger {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1.2rem;
        z-index: 2000;
    }
}
    

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-image {
        width: 120px;
        right: 0;
    }
}

/* Commenting out About, Services, and Contact sections
/* About Section */
.about {
    padding: 5rem 10%;
    background: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    padding: 5rem 10%;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

#contact-form button {
    padding: 1rem;
    background: #6c5ce7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background: #5b4cc4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #6c5ce7;
}
/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.animated-text {
    display: inline-block;
    position: relative;
    color: #3498db;
    font-weight: 700;
}

.animated-text .word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: cycleWords 4s infinite;
    width: 100%;
}

.animated-text .word:nth-child(1) {
    position: relative;
    animation-delay: 0s;
}

.animated-text .word:nth-child(2) {
    animation-delay: 1s;
}

.animated-text .word:nth-child(3) {
    animation-delay: 2s;
}

.animated-text .word:nth-child(4) {
    animation-delay: 3s;
}

@keyframes cycleWords {
    0%, 20% {
        opacity: 0;
        transform: translateY(20px);
    }
    5%, 15% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Domains Section */
.domains-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.domains-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.domains-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.domain-card {
  height: 370px;
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.domain-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.domain-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 0.5rem;
}

.domain-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

.domains-section a,
.domains-section a *,
.domains-section a:visited,
.domains-section a:hover,
.domains-section a:active {
  text-decoration: none !important;
  color: inherit !important;
}

.domains-section a h3:hover,
.domains-section a:hover h3 {
  text-decoration: underline; /* Optional: underline only on hover */
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .domains-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .domains-cards {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Analytics Section */
.analytics-section {
    padding: 5rem 0;
    background-color: #fff;
}

.analytics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.analytics-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.analytics-section .section-header h2 {
    font-size: 2.5rem;
    color: #0B1B35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.analytics-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.analytics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.analytics-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-5px);
}

.analytics-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f8ff;
}

.analytics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.analytics-card h3 {
    font-size: 1.5rem;
    color: #0B1B35;
    margin: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.analytics-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

.analytics-cta {
    text-align: center;
    margin-top: 3rem;
}

.know-more-btn {
    background: #1A2B4E;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.know-more-btn:hover {
    background: #2A3B5E;
}

.know-more-btn i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .analytics-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .analytics-cards {
        grid-template-columns: 1fr;
    }
    
    .analytics-section .section-header h2 {
        font-size: 2rem;
    }
}

/* AI Section */
.ai-section {
    padding: 2rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.ai-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.ai-feature:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.feature-info h3 {
    font-size: 1.25rem;
    color: #0B1B35;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.ai-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
}

.ai-cta {
    text-align: center;
    margin-top: 3rem;
}

.ai-section .know-more-btn {
    background: #1A2B4E;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-section .know-more-btn:hover {
    background: #2A3B5E;
}

.ai-section .know-more-btn i {
    font-size: 0.9rem;
}

/* Responsive Design for AI Section */
@media (max-width: 992px) {
    .ai-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .ai-image {
        width: 100%;
    }

    .robot-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .ai-feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-info h3 {
        font-size: 1.1rem;
    }

    .robot-image {
        max-width: 300px;
    }
}

/* Apps Section */
.apps-section {
    padding: 2rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apps-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.apps-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateX(10px);
}

.app-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-feature .feature-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.app-feature .feature-info h3 {
    font-size: 1.25rem;
    color: #0B1B35;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-feature .feature-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.apps-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
}

.app-logo {
    position: absolute;
    width: 80px;
    height: auto;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.apps-cta {
    text-align: center;
    margin-top: 3rem;
}

.apps-section .know-more-btn {
    background: #1A2B4E;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.apps-section .know-more-btn:hover {
    background: #2A3B5E;
}

.apps-section .know-more-btn i {
    font-size: 0.9rem;
}

.apps-section a,
.apps-section a *,
.apps-section a:visited,
.apps-section a:hover,
.apps-section a:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* Responsive Design for Apps Section */
@media (max-width: 992px) {
    .apps-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .apps-image {
        width: 100%;
    }

    .app-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .app-feature {
        padding: 1rem;
    }

    .app-feature .feature-icon {
        width: 40px;
        height: 40px;
    }

    .app-feature .feature-info h3 {
        font-size: 1.1rem;
    }

    .app-image {
        max-width: 300px;
    }
}

/* Vision & Mission Section */
.vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a4b7c 0%, #0d2b4d 100%);
    color: white;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vision-header i {
    font-size: 1.5rem;
    color: #3498db;
}

.vision-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3498db;
}

.vision-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 600;
}

.vision-text {
    margin-bottom: 2rem;
}

.vision-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.stat-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Vision Section */
@media (max-width: 992px) {
    .vision-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .vision-content h1 {
        font-size: 2rem;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Hide radio buttons */
input[type="radio"] {
    display: none;
}

/* Testimonial slide styles */
.testimonial-slide {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.testimonial-content {
    flex: 1;
    padding-right: 2rem;
}

.quote-mark {
    margin-bottom: 2rem;
}

.quote-mark i {
    font-size: 2.5rem;
    color: #1a4b7c;
}

.testimonial-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #1a2b4e;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.testimonial-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Navigation styles */
.testimonial-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}



/* Play button styles */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(26, 43, 78, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.play-button:hover {
    background: #1A2B4E;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(26, 43, 78, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .testimonial-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .testimonial-content h2 {
        font-size: 1.4rem;
    }

    .testimonial-image {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

/* Client Carousel Styles */
.client-carousel {
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 60px;
}

.client-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: none;
}

.client-logo.active {
    display: block;
    opacity: 1;
}

.client-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: none;
    border: 2px solid #1A2B4E;
    color: #1A2B4E;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1A2B4E;
    color: white;
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo {
        width: 100px;
        height: 50px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
}

/* Testimonial content styles */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 30px;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-info h3 {
    font-size: 1.1rem;
    color: #1a2b4e;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Experience Section */
.experience-section {
    background-color: #1a2b4e;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience-section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.experience-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: #1a2b4e;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-btn i {
    font-size: 0.9rem;
}

/* Responsive styles for Experience Section */
@media (max-width: 768px) {
    .experience-section h2 {
        font-size: 2.5rem;
    }

    .experience-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .experience-section h2 {
        font-size: 2rem;
    }

    .experience-section p {
        font-size: 1rem;
    }

    .experience-btn {
        padding: 0.8rem 1.6rem;
    }
}

.domain-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.domain-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.domain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #00a0e3;
}

.domain-icon i {
    font-size: 2rem;
}

.domain-icon span {
    font-size: 1.2rem;
    color: #00a0e3;
}

.domain-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.domain-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.domain-hero-content .contact-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: #00a0e3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.domain-hero-content .contact-btn:hover {
    background: #0088c7;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #fff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #00a0e3;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a2b4e;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-container h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1a2b4e;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit-item h3 {
    color: #00a0e3;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .domain-hero-content h1 {
        font-size: 2.5rem;
    }

    .domain-hero {
        padding: 7rem 0 5rem;
    }

    .features-section,
    .benefits-section {
        padding: 4rem 0;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .benefit-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .domain-hero-content h1 {
        font-size: 2rem;
    }

    .domain-hero-content p {
        font-size: 1.1rem;
    }

    .benefits-container h2 {
        font-size: 1.8rem;
    }
}

/* Hero Image Section */
.hero-image-section {
    padding: 0;
    background-color: #0d1829;
    overflow: hidden;
    position: relative;
    margin: 3rem 7%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
                0 20px 50px rgba(0, 0, 0, 0.5),
                0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateZ(0);
    margin: 20px 0;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8),
                0 25px 60px rgba(0, 0, 0, 0.6),
                0 15px 40px rgba(0, 0, 0, 0.5);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.image-overlay h2 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 2rem;
    white-space: nowrap;
}

.image-overlay p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Hero Image Section */
@media (max-width: 1200px) {
    .hero-image-section {
        margin: 2.5rem 5%;
    }
}

@media (max-width: 992px) {
    .hero-image-section {
        margin: 2rem 4%;
    }
}

@media (max-width: 768px) {
    .hero-image-section {
        margin: 1.5rem 3%;
    }
}

@media (max-width: 480px) {
    .hero-image-section {
        margin: 1rem 2%;
    }
}

/* Primary Gains Section */
.primary-gains-section {
    padding: 6rem 7%;
    background-color: #fff;
}

.primary-gains-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.primary-gains-container h2 {
    font-size: 3.5rem;
    color: #0B1B35;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.primary-gains-container p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design for Primary Gains Section */
@media (max-width: 1200px) {
    .primary-gains-container h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .primary-gains-section {
        padding: 4rem 5%;
    }

    .primary-gains-container h2 {
        font-size: 2.5rem;
    }

    .primary-gains-container p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .primary-gains-section {
        padding: 3rem 4%;
    }

    .primary-gains-container h2 {
        font-size: 2rem;
    }

    .primary-gains-container p {
        font-size: 1rem;
    }
}

/* Features Cards Section */
.features-cards-section {
    padding: 4rem 7%;
    background-color: #f8f9fa;
}

.features-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    opacity: 0.1;
    z-index: 0;
}

.feature-icon.supply-chain::before {
    background: linear-gradient(135deg, #ff9f43, #ff7f50);
}

.feature-icon.security::before {
    background: linear-gradient(135deg, #45aaf2, #2d98da);
}

.feature-icon.inventory::before {
    background: linear-gradient(135deg, #26de81, #20bf6b);
}

.feature-icon i {
    font-size: 2rem;
    color: #1a2b4e;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1a2b4e;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item h4 {
    color: #00a0e3;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for Features Cards */
@media (max-width: 1200px) {
    .features-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-cards-section {
        padding: 3rem 5%;
    }

    .features-cards-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Benefits Cards Section */
.benefits-cards-section {
    padding: 4rem 7%;
    background-color: #fff;
}

.benefits-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon.cost {
    background-color: #fff2f2;
}

.benefit-icon.innovation {
    background-color: #f2f8ff;
}

.benefit-icon.efficiency {
    background-color: #f2fff5;
}

.benefit-icon i {
    font-size: 2rem;
    color: #1a2b4e;
}

.benefit-card h3 {
    font-size: 1.75rem;
    color: #1a2b4e;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.benefit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.benefit-item h4 {
    color: #00a0e3;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* Responsive Design for Benefits Cards */
@media (max-width: 1200px) {
    .benefits-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-cards-section {
        padding: 3rem 5%;
    }

    .benefits-cards-container {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
    }
}

/* CEO Quote Section */
.ceo-quote-section {
    padding: 6rem 7%;
    background-color: #fff;
    overflow: hidden;
}

.ceo-quote-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-content {
    padding-right: 2rem;
}

.quote-content h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a2b4e;
    font-weight: 600;
    margin-bottom: 2rem;
}

.quote-author p {
    font-size: 1.1rem;
    color: #666;
}

.quote-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.factory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Responsive Design for CEO Quote Section */
@media (max-width: 1200px) {
    .quote-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .ceo-quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-content {
        padding-right: 0;
    }

    .quote-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .ceo-quote-section {
        padding: 4rem 5%;
    }

    .quote-content h2 {
        font-size: 2.4rem;
    }

    .quote-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .quote-content h2 {
        font-size: 2rem;
    }
}

.bfsi-hero {
    background: linear-gradient(135deg, #1a2b4e 0%, #1e3c72 100%);
}

.bfsi-hero .domain-hero-content {
    max-width: 1000px;
}

.bfsi-hero .domain-icon i {
    color: #00A0E3;
}

.bfsi-hero .domain-icon span {
    color: #00A0E3;
    font-weight: 500;
}

.bfsi-hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.bfsi-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.bfsi-hero .contact-btn {
    background: #00A0E3;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.bfsi-hero .contact-btn:hover {
    background: #0088c7;
}

@media (max-width: 1200px) {
    .bfsi-hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .bfsi-hero h1 {
        font-size: 2.5rem;
    }
    
    .bfsi-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .bfsi-hero h1 {
        font-size: 2rem;
    }
}

.analytics-section.highlight {
    box-shadow: 0 0 20px 5px #ffd700;
    transition: box-shadow 0.5s;
}

.analytics-section a,
.analytics-section a *,
.analytics-section a:visited,
.analytics-section a:hover,
.analytics-section a:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* Retail Hero Image Section */
.retail-hero-image-section {
    width: 100vw;
    background: #fff;
    margin: 0 auto 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.retail-hero-image-container {
    position: relative;
    width: 100vw;
    max-width: 90vw;
    height: 60vh;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.retail-main-image {
    width: 100vw;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
}
.retail-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(20,30,50,0.55) 0%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}
.retail-hero-text {
    color: #fff;
    margin-left: 5vw;
    max-width: 600px;
    background: rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.retail-hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}
.retail-hero-text p {
    font-size: 1.2rem;
    color: #e0e0e0;
}
@media (max-width: 900px) {
    .retail-hero-image-container, .retail-main-image {
        height: 38vh;
        min-height: 180px;
    }
    .retail-hero-text {
        padding: 1.2rem 1rem;
        margin-left: 2vw;
    }
    .retail-hero-text h1 {
        font-size: 1.5rem;
    }
    .retail-hero-text p {
        font-size: 1rem;
    }
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  max-width: 420px;
  min-width: 320px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.testimonial-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(33, 150, 243, 0.85);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
}
.play-button:hover {
  background: #1976d2;
}

.testimonial-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2b4e;
  margin: 0 0 0.5rem 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #f2f4f8;
}
.author-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #1a2b4e;
}
.author-info p {
  font-size: 0.95rem;
  color: #888;
  margin: 0;
}
@media (max-width: 900px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
  }
}

.testimonials-grid .play-button,
.testimonials-grid .play-button:visited,
.testimonials-grid .play-button:hover,
.testimonials-grid .play-button:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* ============================================
   MOBILE SHARE BUTTON FOR BLOG PAGES
   Strictly Mobile-Only (<768px)
   ============================================ */

/* Floating Share Button (Fixed Position, Mobile Only) */
.mobile-share-btn {
  display: none; /* Hidden by default on all devices */
  position: fixed;
  top: 120px;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #1a2b4e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  outline: none;
}

.mobile-share-btn:hover,
.mobile-share-btn:focus {
  background: #1a2b4e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.mobile-share-btn:hover i,
.mobile-share-btn:focus i {
  color: white;
}

.mobile-share-btn i {
  font-size: 1.2rem;
  color: #1a2b4e;
  transition: color 0.3s ease;
}

/* Share Modal Overlay */
.share-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Share Modal Content Box */
.share-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  max-width: 350px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button for Modal */
.share-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.share-modal-close:hover,
.share-modal-close:focus {
  color: #1a2b4e;
  background: rgba(0,0,0,0.05);
}

/* Modal Title */
.share-modal h3 {
  margin-bottom: 1.5rem;
  color: #1a2b4e;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Share Buttons Container */
.share-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Individual Share Button */
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 50px;
  min-height: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.share-btn:hover,
.share-btn:focus {
  transform: scale(1.15);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Platform-Specific Colors */
.share-btn.facebook { 
  background: #1877f2; 
}

.share-btn.facebook:hover {
  background: #0d5dbe;
}

.share-btn.x { 
  background: #000000; 
}

.share-btn.x:hover {
  background: #333333;
}

.share-btn.linkedin { 
  background: #0077b5; 
}

.share-btn.linkedin:hover {
  background: #005885;
}

.share-btn.instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}

.share-btn.instagram:hover {
  background: linear-gradient(45deg, #e08020 0%, #d55729 25%, #c91630 50%, #b31053 75%, #a30775 100%); 
}

.share-btn.whatsapp { 
  background: #25d366; 
}

.share-btn.whatsapp:hover {
  background: #1da851;
}

/* ============================================
   MOBILE-ONLY DISPLAY (STRICTLY <768px)
   ============================================ */

/* Show share button ONLY on mobile devices */
@media (max-width: 768px) {
  .mobile-share-btn {
    display: flex;
  }
}

/* Adjust button position on smaller phones */
@media (max-width: 480px) {
  .mobile-share-btn {
    width: 45px;
    height: 45px;
    top: 100px;
    right: 0.8rem;
  }
  
  .mobile-share-btn i {
    font-size: 1.1rem;
  }
  
  .share-modal-content {
    padding: 1.5rem;
    max-width: 300px;
  }
  
  .share-modal h3 {
    font-size: 1.1rem;
  }
  
  .share-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .mobile-share-btn {
    width: 40px;
    height: 40px;
    top: 90px;
  }
  
  .mobile-share-btn i {
    font-size: 1rem;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ============================================
   DESKTOP - ENSURE COMPLETELY HIDDEN
   ============================================ */

/* Force hide on desktop and tablets */
@media (min-width: 769px) {
  .mobile-share-btn {
    display: none !important;
  }
  
  .share-modal {
    display: none !important;
  }
}