* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header and Navigation */
header {
    background: #2d3e50;
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.logo {
    z-index: 1001;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #00d4ff;
    background-color: rgba(0,212,255,0.1);
}

.nav-links a.active {
    color: #00d4ff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hi-Tech Enterprise Banner Section */
.banner {
    background: #2d3e50;
    color: white;
    padding: 150px 0 100px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Tech Grid Background */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="techGrid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="1"/><circle cx="30" cy="30" r="2" fill="rgba(0,255,255,0.2)"/></pattern><pattern id="circuit" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M 30 30 L 90 30 M 60 0 L 60 60 M 45 15 L 75 15 M 45 45 L 75 45" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23techGrid)"/><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
    opacity: 1;
    animation: techFlow 20s linear infinite;
}

/* Network Connection Lines */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="nodeGlow" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgb(0,255,255);stop-opacity:0.8" /><stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:0" /></radialGradient></defs><g stroke="rgba(0,255,255,0.3)" stroke-width="2" fill="none"><path d="M 100 100 Q 300 50 500 150 T 900 200"/><path d="M 200 300 Q 400 250 600 350 T 1000 400"/><path d="M 50 450 Q 250 400 450 500 T 850 550"/></g><circle cx="100" cy="100" r="4" fill="url(%23nodeGlow)"/><circle cx="500" cy="150" r="4" fill="url(%23nodeGlow)"/><circle cx="900" cy="200" r="4" fill="url(%23nodeGlow)"/><circle cx="200" cy="300" r="4" fill="url(%23nodeGlow)"/><circle cx="600" cy="350" r="4" fill="url(%23nodeGlow)"/><circle cx="1000" cy="400" r="4" fill="url(%23nodeGlow)"/></svg>');
    opacity: 0.6;
    animation: networkPulse 8s ease-in-out infinite;
}

.banner-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-text {
    max-width: 600px;
}

.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner .subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Hi-Tech Banner Stats */
.banner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.banner-stat {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(0,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.banner-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0,255,255,0.5);
    box-shadow: 0 12px 40px rgba(0,255,255,0.3);
}

.banner-stat::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent, rgba(0,255,255,0.3), transparent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-stat:hover::before {
    opacity: 1;
}

.banner-stat h3 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
    animation: statGlow 2s ease-in-out infinite alternate;
}

.banner-stat p {
    font-size: 1rem;
    opacity: 0.9;
    color: #ffffff;
    font-weight: 500;
}

/* Tech Icons */
.tech-icon {
    position: absolute;
    color: rgba(0,255,255,0.3);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.tech-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.tech-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.tech-icon:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 4s; }
.tech-icon:nth-child(4) { bottom: 15%; right: 12%; animation-delay: 1s; }
.tech-icon:nth-child(5) { top: 40%; left: 5%; animation-delay: 3s; }
.tech-icon:nth-child(6) { top: 60%; right: 8%; animation-delay: 5s; }

/* Data Stream Visualization */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
    animation: dataFlow 8s linear infinite;
}

.data-particle:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    top: 40%;
    animation-delay: 1.6s;
}

.data-particle:nth-child(3) {
    top: 60%;
    animation-delay: 3.2s;
}

.data-particle:nth-child(4) {
    top: 30%;
    animation-delay: 4.8s;
}

.data-particle:nth-child(5) {
    top: 70%;
    animation-delay: 6.4s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #3d7ab8 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="1100" cy="300" r="100" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="200" r="60" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.5;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.hero .btn {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Hi-Tech Button for Banner */
.banner .btn {
    background: #00d4ff;
    border: none;
    box-shadow: 0 4px 20px rgba(0,212,255,0.4);
    color: #1a1a2e;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.banner .btn:hover {
    background: #00b8e6;
    box-shadow: 0 6px 25px rgba(0,212,255,0.5);
    transform: translateY(-3px);
    color: #1a1a2e;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.banner .btn-secondary {
    border: 2px solid rgba(255,255,255,0.8);
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}

.banner .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.hero .btn-secondary {
    border: 2px solid rgba(255,255,255,0.8);
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #667eea;
    width: 30px;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    color: #bdc3c7;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .banner h1 {
        font-size: 3rem;
    }
    
    .banner-stats {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2d3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        display: flex;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .banner-image {
        order: -1;
    }
    
    .banner {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .banner-text {
        max-width: 100%;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .banner .subtitle {
        font-size: 1rem;
    }
    
    .banner-stat {
        padding: 1rem;
    }
    
    .banner-stat h3 {
        font-size: 2rem;
    }
    
    /* Hide floating tech icons and data stream on mobile for better performance */
    .tech-icon,
    .data-stream {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .banner {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .banner h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .banner .subtitle {
        font-size: 0.95rem;
    }
    
    .banner .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Form responsiveness */
    .contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Extra Small Phones */
@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }
    
    header {
        padding: 1rem 0;
    }
    
    nav {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 360px) {
    .logo-img {
        height: 45px;
    }
    
    header {
        padding: 0.7rem 0;
    }
    
    nav {
        padding: 0 10px;
    }
    
    .banner {
        padding: 70px 0 30px;
    }
    
    .banner h1 {
        font-size: 1.6rem;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: #ffffff;
        background-clip: text;
    }
    
    .banner .subtitle {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .banner-stats {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .banner-stat {
        padding: 0.6rem;
    }
    
    .banner-stat h3 {
        font-size: 1.4rem;
    }
    
    .banner-stat p {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.bg-white {
    background-color: white;
}

.bg-light {
    background-color: #f7f9fc;
}

.text-primary {
    color: #667eea;
}

.text-secondary {
    color: #6c757d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Hi-Tech Banner Animations */
@keyframes techFlow {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-20px) translateY(-10px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

@keyframes titleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes statGlow {
    0% { text-shadow: 0 0 10px rgba(0,255,255,0.5); }
    100% { text-shadow: 0 0 20px rgba(0,255,255,0.8), 0 0 30px rgba(0,255,255,0.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-10px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-5px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-15px) rotate(270deg); opacity: 0.7; }
}

@keyframes dataFlow {
    0% { transform: translateX(-100px); opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

/* Particle Effect */
@keyframes particle {
    0% { transform: translateY(0) scale(0); opacity: 1; }
    50% { transform: translateY(-50px) scale(1); opacity: 0.8; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

/* =======================
   SMS PLATFORM STYLES (ClickSMS-inspired)
   ======================= */

/* Statistics Counter Section */
.stats-counter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="100" cy="100" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="300" r="150" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stats-counter .container {
    position: relative;
    z-index: 1;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.counter-item .counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.counter-item .counter-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Code Block Styles */
.code-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.code-block-container {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 2rem;
}

.code-block-header {
    background: #2d2d2d;
    padding: 15px 20px;
    border-bottom: 1px solid #3d3d3d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-block-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.code-lang-badge {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.code-block {
    padding: 20px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
}

.code-block code {
    color: #d4d4d4;
    display: block;
}

.code-block .comment {
    color: #6a9955;
}

.code-block .keyword {
    color: #569cd6;
}

.code-block .string {
    color: #ce9178;
}

.code-block .function {
    color: #dcdcaa;
}

.code-block .variable {
    color: #9cdcfe;
}

.code-block .operator {
    color: #d4d4d4;
}

/* Pricing Tables */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102,126,234,0.3);
}

.pricing-card.featured::before {
    height: 6px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #667eea;
    margin: 1.5rem 0;
}

.pricing-price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #667eea;
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-features li.unavailable {
    color: #ccc;
}

.pricing-features li.unavailable i {
    color: #ccc;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card.featured .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

/* Service Cards - SMS Platform Style */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
    border-left-color: #764ba2;
}

.service-card .service-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 10px 24px;
}

.service-card .btn:hover {
    background: #667eea;
    color: white;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-choose-item .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
    transition: all 0.3s ease;
}

.why-choose-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(102,126,234,0.5);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* API Documentation Styles */
.api-docs {
    background: white;
    padding: 80px 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.docs-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.docs-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.docs-content ul {
    list-style: none;
    padding: 0;
}

.docs-content ul li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.docs-content ul li i {
    color: #667eea;
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: #667eea;
    font-size: 1.1rem;
    padding: 15px 40px;
    margin: 0 10px;
}

.cta-section .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .counter-item .counter-number {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .counter-item {
        padding: 1.5rem;
    }
    
    .counter-item .counter-number {
        font-size: 2rem;
    }
    
    .code-block {
        font-size: 0.85rem;
        padding: 15px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

