/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header Styles - Modern & Attractive */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.top-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.top-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.top-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.logo-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-graphic {
    position: relative;
    width: 70px;
    height: 70px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid #667eea;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    position: absolute;
    left: 0;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.logo-bolt {
    width: 35px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    clip-path: polygon(0% 0%, 100% 25%, 50% 50%, 100% 75%, 0% 100%);
    position: absolute;
    left: 17px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-triangle {
    border-left-color: #764ba2;
    transform: translateX(-2px);
}

.logo-wrapper:hover .logo-bolt {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateX(2px);
}

.logo-text h1 {
    font-size: 52px;
    font-weight: 300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-text h1 {
    transform: scale(1.02);
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #333 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -12px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 17px;
    color: #666;
    margin-top: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero Section - Enhanced */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    position: relative;
    z-index: 1;
    animation: fadeInLeft 1s ease;
}

.hero-left h2 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease;
}

.hero-left h3 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.9;
    opacity: 0.9;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.btn-read-more {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-right {
    position: relative;
}

.hero-image {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.screen-overlay {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 5px;
    padding: 30px;
    min-height: 300px;
    position: relative;
}

.data-visualization {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="20" fill="white" opacity="0.3"/><circle cx="150" cy="80" r="25" fill="white" opacity="0.3"/><circle cx="100" cy="150" r="30" fill="white" opacity="0.3"/></svg>') no-repeat center;
    background-size: contain;
}

/* Services Overview */
.services-overview {
    background: #e8e8e8;
    padding: 60px 0;
}

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

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Interactive Services */
.interactive-services {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 60px 0;
    color: #fff;
}

.interactive-content {
    display: grid;
    grid-template-columns: 200px 1fr 400px;
    gap: 40px;
    align-items: center;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    padding: 15px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    font-weight: 600;
}

.nav-item:hover {
    transform: translateX(10px);
}

.services-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-icon {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-icon i.fa-globe {
    font-size: 120px;
    color: #fff;
    opacity: 0.8;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 24px;
    color: #fff;
    animation: float 3s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 20%;
    left: 25%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(4) {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-icons i:nth-child(5) {
    bottom: 10%;
    right: 30%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.services-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.services-text p {
    font-size: 16px;
    line-height: 1.8;
}

/* Detailed Services */
.detailed-services {
    background: #fff;
    padding: 60px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.sidebar-item:hover {
    background: #e8e8e8;
}

.sidebar-item i {
    font-size: 24px;
    color: #27ae60;
}

.service-content {
    padding: 20px;
}

.content-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.content-block h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.content-block ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

/* About Page */
.about-section {
    background: #fff;
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-logo {
    text-align: center;
}

.logo-graphic.large {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.logo-graphic.large .logo-triangle {
    border-left-width: 60px;
    border-top-width: 30px;
    border-bottom-width: 30px;
}

.logo-graphic.large .logo-bolt {
    width: 60px;
    height: 120px;
    left: 30px;
}

.about-image {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.team-meeting {
    color: #27ae60;
}

.team-meeting i {
    font-size: 80px;
    margin-bottom: 20px;
}

.team-meeting p {
    font-size: 20px;
    font-weight: 600;
}

/* Services Page */
.services-page {
    background: #fff;
    padding: 60px 0;
}

.page-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
}

.services-intro {
    margin-bottom: 60px;
}

.services-intro p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.services-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-column {
    background: #fff;
    border: 2px solid #27ae60;
    border-radius: 10px;
    overflow: hidden;
}

.service-header {
    background: #27ae60;
    color: #fff;
    padding: 20px;
    font-size: 24px;
    font-weight: 600;
}

.service-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.service-image i {
    font-size: 80px;
    color: #27ae60;
}

.cloud-img {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cloud-img i {
    color: #fff;
}

.security-img {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.security-img i {
    color: #fff;
}

.mobility-img {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.mobility-img i {
    color: #fff;
}

.service-description {
    padding: 30px;
}

.service-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Careers Page */
.careers-section {
    background: #fff;
    padding: 60px 0;
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
}

.careers-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    list-style: none;
}

.job-listings li {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    color: #333;
    font-weight: 500;
}

/* Contact Page - Modern Attractive Design */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease;
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header h3 i {
    color: #667eea;
    font-size: 24px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #667eea;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.form-group input:focus~.input-focus,
.form-group textarea:focus~.input-focus {
    width: 100%;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.sending .btn-text {
    opacity: 0;
}

.btn-submit.sending .btn-icon {
    display: none;
}

.btn-submit.sending .btn-loader {
    display: block;
}

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

.form-message {
    margin-top: 20px;
    padding: 18px 25px;
    border-radius: 12px;
    display: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

.contact-right {
    position: relative;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease;
    height: fit-content;
}

.info-card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-card-header h3 {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-header h3 i {
    color: #667eea;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-item:hover {
    transform: translateX(5px);
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.info-icon i {
    color: #fff;
    font-size: 20px;
}

.info-content h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

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

.info-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.float-icon i {
    animation: rotate 10s linear infinite;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

.float-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Members Page */
.members-section {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.members-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    font-family: serif;
}

.members-content>p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.members-info {
    max-width: 700px;
    margin: 0 auto;
}

.members-info p {
    line-height: 1.8;
    color: #666;
}

/* Book Online Page */
.book-online-section {
    background: #fff;
    padding: 150px 0;
    text-align: center;
}

.no-booking {
    font-size: 24px;
    color: #666;
    font-family: serif;
}

/* Footer */
.footer {
    background: #e8e8e8;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
    display: block;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

.footer-bottom i {
    font-size: 20px;
    color: #000;
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #27ae60;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-icon i {
    color: #fff;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav .container {
        padding: 12px 15px;
    }

    .nav-links {
        gap: 3px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 13px;
        padding: 8px 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h2 {
        font-size: 36px;
    }

    .hero-left h3 {
        font-size: 28px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .interactive-content {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .form-container {
        padding: 25px;
    }

    .contact-info-card {
        position: relative;
        top: 0;
    }

    .float-icon {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo-text h1 {
        font-size: 36px;
    }

    .logo-graphic {
        width: 60px;
        height: 60px;
    }

    .company-name {
        font-size: 16px;
    }

    .tagline {
        font-size: 14px;
    }
}
