/* Global Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --secondary: #ff6600;
    --secondary-dark: #e65c00;
    --dark: #333333;
    --light: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #777777;
    --black: #000000;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: var(--light);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary);
}

.social-links a {
    color: var(--light);
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary);
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    margin-right: 15px;
}

/* Features Section */
.features {
    background-color: var(--gray);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Coverage Section */
.coverage {
    background-color: var(--primary);
    color: var(--light);
    padding: 60px 0;
    text-align: center;
}

.coverage h2 {
    color: var(--light);
    margin-bottom: 30px;
}

.coverage-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.coverage-form button {
    border-radius: 0 4px 4px 0;
}

/* Testimonials */
.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating {
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.customer {
    display: flex;
    align-items: center;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg') no-repeat center center/cover;
    color: var(--light);
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--light);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Plans Section */
.plans-section {
    background-color: var(--gray);
}

.plans-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

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

.plan-header {
    padding: 30px;
    text-align: center;
    background-color: var(--primary);
    color: var(--light);
}

.plan-card.popular .plan-header {
    background-color: var(--secondary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--light);
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-price {
    margin-top: 10px;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.plan-card.popular .plan-features ul li i {
    color: var(--secondary);
}

.btn-plan {
    display: block;
    text-align: center;
    margin: 0 30px 30px;
}

.business-plans {
    background-color: var(--light);
}

/* Add-Ons Section */
.addons-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.addon-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.addon-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.addon-card h3 {
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Support Options */
.support-options h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.option-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.option-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Coverage Map */
.coverage-map h2 {
    text-align: center;
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    display: block;
    width: 100%;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 500px;
}

.map-overlay h3 {
    margin-bottom: 20px;
}

.map-overlay form {
    display: flex;
}

.map-overlay input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.map-overlay button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary);
    color: var(--light);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 10px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 0 auto 15px;
        width: 80%;
    }

    .coverage-form {
        flex-direction: column;
    }

    .coverage-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .coverage-form button {
        border-radius: 4px;
        width: 100%;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }

    .map-overlay form {
        flex-direction: column;
    }

    .map-overlay input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .map-overlay button {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        margin-top: 15px;
    }

    .legal-links a {
        margin: 0 10px;
    }
}/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
}

.info-card {
    display: flex;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-icon {
    margin-right: 15px;
    color: #4a6baf;
    font-size: 20px;
    margin-top: 3px;
}

.info-content h3 {
    margin: 0 0 5px 0;
    color: #4a6baf;
    font-size: 18px;
}

.info-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
}
/* Client Slider */
.client-slider {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

.client-slider h2 {
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
}

.slider-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    align-items: center;
    animation: scroll 25s linear infinite;
    width: calc(200px * 16); /* Double the width for seamless looping */
}

.slide {
    width: 200px;
    flex-shrink: 0;
    padding: 0 15px;
}

.logo-container {
    width: 160px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slide:hover .logo-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide:hover .logo-container img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8)); /* Move by half the width */
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .slide {
        width: 180px;
    }
    .logo-container {
        width: 140px;
    }
    .slider-track {
        width: calc(180px * 16);
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-180px * 8));
        }
    }
}

@media (max-width: 992px) {
    .slide {
        width: 160px;
    }
    .logo-container {
        width: 120px;
        height: 80px;
    }
    .slider-track {
        width: calc(160px * 16);
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-160px * 8));
        }
    }
}

@media (max-width: 768px) {
    .client-slider {
        padding: 40px 0;
    }
    .slide {
        width: 140px;
    }
    .logo-container {
        width: 100px;
        height: 70px;
        padding: 10px;
    }
    .slider-track {
        width: calc(140px * 16);
        animation: scroll 20s linear infinite;
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-140px * 8));
        }
    }
}

@media (max-width: 576px) {
    .slide {
        width: 120px;
    }
    .logo-container {
        width: 90px;
        height: 60px;
    }
    .slider-track {
        width: calc(120px * 16);
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-120px * 8));
        }
    }
}
/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.achievements h2 {
    margin-bottom: 40px;
    color: #333;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    font-size: 2.5rem;
    color: #4a6baf;
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 2rem;
    color: #4a6baf;
    margin-bottom: 10px;
}

.achievement-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .achievements {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 16px;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background-color: #f5f5f5;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}