/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --orange-dark: #FF7B25;
    --orange-light: #FFA647;
    --gradient-orange: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: var(--gradient-orange);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.8rem;
}

.logo h1 a {
    text-decoration: none;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--gradient-orange);
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: all 0.3s;
    border-top: 3px solid var(--orange-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 123, 37, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--orange-dark);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form textarea {
    height: 150px;
}

form button:hover {
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--orange-dark);
}

/* Footer */
footer {
    background: var(--gradient-orange);
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Mobile Navbar */
.nav-links {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #333;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        z-index: 1000;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-links li {
        margin: 1rem 0;
    }
}

/* Form Validation */
input.error, textarea.error {
    border: 1px solid red !important;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: -0.5rem;
    display: none;
}/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --orange-dark: #FF7B25;
    --orange-light: #FFA647;
    --gradient-orange: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: var(--gradient-orange);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.8rem;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--gradient-orange);
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: all 0.3s;
    border-top: 3px solid var(--orange-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 123, 37, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--orange-dark);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--orange-dark);
}

form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form textarea {
    height: 150px;
}

form button:hover {
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--orange-dark);
}

/* Footer */
footer {
    background: var(--gradient-orange);
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Mobile Navbar */
.nav-links {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #333;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        z-index: 1000;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-links li {
        margin: 1rem 0;
    }
}

/* Form Validation */
input.error, textarea.error {
    border: 1px solid red !important;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: -0.5rem;
    display: none;
}

/* Service Buttons */
.service-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-btn, .learn-btn {
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.service-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    flex-grow: 1;
}

.learn-btn {
    background: white;
    color: var(orange-dark);
    border: 1px solid var(orange-dark);
    flex-grow: 1;
}

.service-btn:hover {
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

.learn-btn:hover {
 background: linear-gradient(135deg, #FF6A00, #FF8C42);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);

    background: var(orange-dark);
    color: white;
}

/* Floating All Services Button */
.all-services-btn {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.all-services-btn .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .service-buttons {
        flex-direction: column;
    }
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255, 123, 37, 0.8);
    color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicators */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--orange-dark);
    transform: scale(1.2);
}

/* Hero Content Positioning */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: -200px;
}

@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: 80%;
    }
    
    .hero-content {
        margin-top: -150px;
    }
}











<!-- Package -->
/* Package Page Specific Styles */
.package-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600?text=SMS+Packages');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.package-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    font-size: 3rem;
    color: var(--orange-dark);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s;
    border-top: 4px solid var(--orange-light);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 123, 37, 0.2);
}

.package-card.featured {
    border-top: 4px solid var(--orange-dark);
    transform: scale(1.02);
}

.package-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--orange-dark);
    margin-top: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.fa-check {
    color: var(--orange-dark);
}

.fa-times {
    color: #999;
}

.package-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.8rem;
    font-weight: bold;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--orange-dark);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background: var(--orange-dark);
    color: white;
}

tr:nth-child(even) {
    background: #f5f5f5;
}

/* CTA Section */
.package-cta {
    background: var(--gradient-orange);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-btn {
    background: white;
    color: var(--orange-dark);
    margin-top: 1.5rem;
}

.cta-btn:hover {
    background: #f5f5f5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-hero {
        height: 40vh;
    }
    
    .package-card.featured {
        transform: none;
    }
}


/* Testimonial Section - Unique Class Names */
.testimonial-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 3rem; /* Added spacing */
    position: relative;
    z-index: 5; /* Ensure it stays above other elements */
}

.testimonial-heading {
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.2rem;
    position: relative;
}

.testimonial-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    margin: 1rem auto 0;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 1rem;
    display: none;
    animation: fadeInTestimonial 0.5s ease;
    border-top: 3px solid var(--orange-dark);
}

.testimonial-card.active-testimonial {
    display: block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--orange-light);
}

.testimonial-author h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.testimonial-stars {
    color: #FFD700;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--orange-light);
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    opacity: 0.3;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
    text-align: left;
    border-top: 1px dashed #eee;
    padding-top: 1rem;
}

.testimonial-meta i {
    margin-right: 0.3rem;
    color: var(--orange-dark);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.testimonial-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 123, 37, 0.5);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active-dot {
    background: var(--orange-dark);
    transform: scale(1.2);
}

/* Animation */
@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-text {
        padding-left: 0;
    }
    
    .testimonial-text::before {
        left: -0.2rem;
    }
}