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

/* Enhanced Icon Styling */
i {
 display: inline-block;
 transition: all 0.3s ease;
}

/* Navigation Icons */
.nav-menu a i {
 margin-right: 0.5rem;
 font-size: 1.1rem;
 transition: all 0.3s ease;
}

.nav-menu a:hover i {
 transform: scale(1.2);
 color: #ff9800;
}

/* Section Header Icons */
.section-header h2 i {
 margin-right: 0.8rem;
 font-size: 1.2rem;
 background: linear-gradient(135deg, #0056b3, #ff9800);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
 0%, 100% {
 filter: drop-shadow(0 0 2px rgba(0, 86, 179, 0.3));
 }
 50% {
 filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.5));
 }
}

/* Contact Icons */
.contact-card i {
 font-size: 1.5rem;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 transition: all 0.3s ease;
}

.contact-card:hover i {
 transform: scale(1.2) rotate(5deg);
 filter: drop-shadow(0 0 8px rgba(0, 86, 179, 0.4));
}

/* Footer Icons */
.footer-section h4 i {
 margin-right: 0.5rem;
 color: #ff9800;
 transition: all 0.3s ease;
}

.footer-section h4:hover i {
 transform: scale(1.1);
 filter: drop-shadow(0 0 5px rgba(255, 152, 0, 0.5));
}

.footer-social a {
 transition: all 0.3s ease;
}

.footer-social a i {
 font-size: 1.5rem;
 color: #fff;
 transition: all 0.3s ease;
}

.footer-social a:hover i {
 transform: translateY(-5px) scale(1.2);
 color: #ff9800;
 filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.6));
}

/* Logo Icon */
.logo-text i {
 margin-right: 0.5rem;
 font-size: 1.2rem;
 animation: logoIconPulse 3s ease-in-out infinite;
}

@keyframes logoIconPulse {
 0%, 100% {
 transform: scale(1);
 }
 50% {
 transform: scale(1.1);
 }
}

/* Feature Icons */
.feature-item i {
 font-size: 1.3rem;
 color: #ff9800;
 margin-right: 0.5rem;
 transition: all 0.3s ease;
}

.feature-item:hover i {
 transform: scale(1.2) rotate(10deg);
 filter: drop-shadow(0 0 5px rgba(255, 152, 0, 0.5));
}

/* Detail Card Icons */
.detail-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1rem;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.detail-icon i {
 color: #fff;
 font-size: 1.5rem;
}

.detail-card:hover .detail-icon {
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Service Feature Icons */
.service-features i {
 margin-right: 0.5rem;
 color: #0056b3;
 font-size: 0.9rem;
 transition: all 0.3s ease;
}

.service-card:hover .service-features i {
 color: #ff9800;
 transform: scale(1.1);
}

/* Hero Icons */
.hero-icons i {
 font-size: 2.5rem;
 color: rgba(255, 255, 255, 0.8);
 transition: all 0.3s ease;
 animation: float 3s ease-in-out infinite;
}

.hero-icons i:nth-child(1) { animation-delay: 0s; }
.hero-icons i:nth-child(2) { animation-delay: 0.5s; }
.hero-icons i:nth-child(3) { animation-delay: 1s; }
.hero-icons i:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
 0%, 100% {
 transform: translateY(0);
 }
 50% {
 transform: translateY(-10px);
 }
}

.hero-icons i:hover {
 color: #fff;
 transform: scale(1.2) rotate(10deg);
 filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Button Icons */
.btn i {
 margin-right: 0.5rem;
 transition: all 0.3s ease;
}

.btn:hover i {
 transform: scale(1.2);
}

/* Hero Badge Icon */
.hero-badge i {
 margin-right: 0.5rem;
 animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
 0%, 100% {
 transform: scale(1);
 }
 50% {
 transform: scale(1.2);
 }
}

/* Contact Info Icons */
.contact-info p i {
 color: #0056b3;
 margin-right: 0.5rem;
 transition: all 0.3s ease;
}

.contact-info p:hover i {
 transform: scale(1.2);
 color: #ff9800;
}

/* Legal Link Icons */
.legal-link i {
 margin-right: 0.5rem;
 transition: all 0.3s ease;
}

.legal-link:hover i {
 transform: scale(1.2);
 color: #ff9800;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Arial, sans-serif;
 margin: 0;
 padding: 0;
 background: #f8f9fa;
 color: #222;
 line-height: 1.6;
 font-size: 1rem;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-rendering: optimizeLegibility;
}

/* Accessibility and SEO */
.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
 outline: 2px solid #0056b3;
 outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
 position: absolute;
 top: -40px;
 left: 6px;
 background: #0056b3;
 color: white;
 padding: 8px;
 text-decoration: none;
 border-radius: 4px;
 z-index: 1000;
}

.skip-link:focus {
 top: 6px;
}

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

.navbar {
 background: #0056b3;
 color: #fff;
 padding: 0.5rem 0;
 box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-container {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-toggle {
 display: none;
 flex-direction: column;
 cursor: pointer;
 padding: 0.5rem;
 z-index: 1000;
}

.nav-toggle span {
 width: 25px;
 height: 3px;
 background: #0056b3;
 margin: 3px 0;
 transition: 0.3s;
 border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
 transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
 transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Toggle Button - Only visible on mobile */
@media (max-width: 768px) {
 .nav-toggle {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 25px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 0;
 z-index: 1000;
 transition: all 0.3s ease;
 }

 .nav-toggle:hover {
 transform: scale(1.1);
 }

 .nav-toggle span {
 width: 100%;
 height: 3px;
 background: #ffffff;
 border-radius: 2px;
 transition: all 0.3s ease;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
 margin: 0;
 }

 .nav-toggle.active span:nth-child(1) {
 transform: rotate(45deg) translate(6px, 6px);
 background: #ff9800;
 }

 .nav-toggle.active span:nth-child(2) {
 opacity: 0;
 transform: translateX(-20px);
 }

 .nav-toggle.active span:nth-child(3) {
 transform: rotate(-45deg) translate(6px, -6px);
 background: #ff9800;
 }
}
.nav-logo {
 display: flex;
 align-items: center;
 background: linear-gradient(135deg, #0056b3 0%, #0072ef 25%, #ff9800 50%, #ffb74d 75%, #0056b3 100%);
 border-radius: 50px;
 padding: 8px 20px;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
 transition: all 0.3s ease;
 border: 2px solid rgba(255, 255, 255, 0.2);
 position: relative;
 overflow: hidden;
}

.nav-logo::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
 transition: left 0.5s ease;
}

.nav-logo:hover::before {
 left: 100%;
}

.nav-logo:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 25px rgba(0, 86, 179, 0.6);
 border-color: rgba(255, 255, 255, 0.4);
}

.logo-text {
 font-size: 1.6rem;
 font-weight: 800;
 letter-spacing: 1.5px;
 background: linear-gradient(45deg, #ffffff, #f8f9fa, #e9ecef, #ffffff);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 position: relative;
 padding-left: 0;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 font-family: 'Poppins', sans-serif;
 animation: colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {
 0%, 100% {
 background: linear-gradient(45deg, #ffffff, #f8f9fa, #e9ecef, #ffffff);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 }
 25% {
 background: linear-gradient(45deg, #0056b3, #ffffff, #0072ef, #0056b3);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 }
 50% {
 background: linear-gradient(45deg, #ff9800, #ffffff, #ffb74d, #ff9800);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 }
 75% {
 background: linear-gradient(45deg, #0072ef, #ffffff, #0056b3, #0072ef);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 }
}

.logo-text::after {
 content: '';
 position: absolute;
 left: 11.2em;
 top: 50%;
 transform: translateY(-50%);
 width: 0.4rem;
 height: 0.4rem;
 background: linear-gradient(45deg, #0056b3, #0072ef, #ff9800, #ffb74d);
 border-radius: 50%;
 box-shadow: 0 0 15px rgba(0, 86, 179, 0.8);
 animation: colorfulPulse 2s infinite;
}

@keyframes colorfulPulse {
 0% {
 opacity: 1;
 transform: translateY(-50%) scale(1);
 background: linear-gradient(45deg, #0056b3, #0072ef, #ff9800, #ffb74d);
 box-shadow: 0 0 15px rgba(0, 86, 179, 0.8);
 }
 25% {
 opacity: 0.8;
 transform: translateY(-50%) scale(1.1);
 background: linear-gradient(45deg, #0072ef, #ff9800, #ffb74d, #0056b3);
 box-shadow: 0 0 20px rgba(0, 114, 239, 0.9);
 }
 50% {
 opacity: 0.6;
 transform: translateY(-50%) scale(1.3);
 background: linear-gradient(45deg, #ff9800, #ffb74d, #0056b3, #0072ef);
 box-shadow: 0 0 25px rgba(255, 152, 0, 1);
 }
 75% {
 opacity: 0.8;
 transform: translateY(-50%) scale(1.1);
 background: linear-gradient(45deg, #ffb74d, #0056b3, #0072ef, #ff9800);
 box-shadow: 0 0 20px rgba(255, 183, 77, 0.9);
 }
 100% {
 opacity: 1;
 transform: translateY(-50%) scale(1);
 background: linear-gradient(45deg, #0056b3, #0072ef, #ff9800, #ffb74d);
 box-shadow: 0 0 15px rgba(0, 86, 179, 0.8);
 }
}

.nav-menu {
 list-style: none;
 display: flex;
 gap: 2rem;
 margin: 0;
 padding: 0;
}

/* Desktop menu - visible by default */
@media (min-width: 769px) {
 .nav-menu {
 display: flex !important;
 }

 .nav-toggle {
 display: none !important;
 }
}

/* Mobile Menu - Hidden by default on mobile */
@media (max-width: 768px) {
 .nav-menu {
 display: none !important;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #0056b3 100%);
 flex-direction: column;
 padding: 1.5rem;
 box-shadow: 0 8px 25px rgba(0,0,0,0.25);
 z-index: 999;
 border-radius: 0 0 15px 15px;
 border-top: 3px solid #ff9800;
 }

 .nav-menu.active {
 display: flex !important;
 animation: slideDown 0.3s ease-out;
 }

 @keyframes slideDown {
 from {
 opacity: 0;
 transform: translateY(-10px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .nav-menu li {
 width: 100%;
 text-align: center;
 margin: 0.8rem 0;
 opacity: 0;
 animation: fadeInUp 0.4s ease-out forwards;
 }

 .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
 .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
 .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
 .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
 .nav-menu li:nth-child(5) { animation-delay: 0.5s; }

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

 .nav-menu a {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1.2rem 1.8rem;
 border-radius: 12px;
 transition: all 0.3s ease;
 font-size: 1.2rem;
 font-weight: 600;
 border: 2px solid #ff9800;
 color: #ffffff;
 text-decoration: none;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 letter-spacing: 0.5px;
 background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.1) 100%);
 box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
 margin-bottom: 0.8rem;
 position: relative;
 overflow: hidden;
 }

 .nav-menu a i {
 margin-right: 0.8rem;
 font-size: 1.3rem;
 color: #ffffff;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
 }

 .nav-menu a:hover,
 .nav-menu a.active {
 background: linear-gradient(135deg, rgba(255, 152, 0, 0.4) 0%, rgba(255, 152, 0, 0.3) 100%);
 border-color: #ff9800;
 transform: translateY(-3px) scale(1.02);
 box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
 color: #ffffff;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
 }
}
.nav-menu a {
 color: #fff;
 text-decoration: none;
 font-weight: 500;
 transition: color 0.2s;
}
.nav-menu a:hover {
 color: #ff9800;
}

.hero {
 background: linear-gradient(135deg, #0056b3 0%, #0072ef 30%, #0088ff 60%, #ff9800 100%);
 color: #fff;
 padding: 4rem 0 3rem 0;
 margin-bottom: 0;
 position: relative;
 overflow: hidden;
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
 animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
 0%, 100% {
 opacity: 0.3;
 transform: scale(1);
 }
 50% {
 opacity: 0.6;
 transform: scale(1.1);
 }
}
.hero-content {
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: 2rem;
}
.hero-content > div {
 flex: 1 1 350px;
 position: relative;
 z-index: 1;
}
.hero h1 {
 font-size: 2.8rem;
 margin-bottom: 0.5rem;
 font-weight: 800;
 letter-spacing: -0.5px;
 text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero h2 {
 font-size: 1.5rem;
 font-weight: 400;
 margin-bottom: 1.5rem;
}
.hero-buttons {
 margin-top: 1.5rem;
}
.btn {
 display: inline-block;
 padding: 1rem 2rem;
 border-radius: 50px;
 font-weight: 700;
 text-decoration: none;
 margin-right: 1rem;
 transition: all 0.3s ease;
 border: none;
 cursor: pointer;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 position: relative;
 overflow: hidden;
}
.btn-primary {
 background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
 color: #fff;
 border: 2px solid transparent;
}
.btn-primary:hover {
 background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}
.btn-secondary {
 background: rgba(255, 255, 255, 0.15);
 color: #fff;
 border: 2px solid rgba(255, 255, 255, 0.3);
 backdrop-filter: blur(10px);
}
.btn-secondary:hover {
 background: rgba(255, 255, 255, 0.25);
 border-color: rgba(255, 255, 255, 0.5);
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.hero-icons {
 font-size: 2.5rem;
 display: flex;
 gap: 1.5rem;
 margin-top: 2rem;
}

.about {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 padding: 2rem 0;
 margin: 0;
 position: relative;
 min-height: 100vh;
}

.about::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}
.about h2 {
 color: #0056b3;
 margin-bottom: 1rem;
 font-size: 2.8rem;
 font-weight: 800;
 position: relative;
 display: inline-block;
}

.about h2::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 0;
 width: 60px;
 height: 4px;
 background: linear-gradient(90deg, #0056b3, #ff9800);
 border-radius: 2px;
}
.about .subtitle {
 color: #888;
 margin-bottom: 3rem;
 font-size: 1.2rem;
}

.about-content {
 margin-top: 1rem;
}

.about-hero {
 text-align: center;
 margin-bottom: 1.5rem;
}

.about-hero h1 {
 color: #0056b3;
 font-size: 2rem;
 margin-bottom: 0.5rem;
 font-weight: 800;
}

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

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

.about-card {
 background: #fff;
 border-radius: 12px;
 padding: 1.5rem;
 text-align: center;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.about-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.card-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1rem;
 color: #fff;
 font-size: 1.3rem;
}

.card-content h3 {
 color: #0056b3;
 font-size: 1.1rem;
 margin-bottom: 0.3rem;
 font-weight: 700;
}

.card-subtitle {
 color: #666;
 font-size: 0.85rem;
 margin-bottom: 0.5rem;
 font-weight: 500;
}

.card-content p {
 color: #555;
 font-size: 0.85rem;
 line-height: 1.4;
 margin: 0;
}

.story-section {
 background: #fff;
 border-radius: 12px;
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
}

.story-section h2 {
 color: #0056b3;
 font-size: 1.3rem;
 margin-bottom: 0.8rem;
 font-weight: 700;
}

.story-section p {
 color: #555;
 font-size: 0.95rem;
 line-height: 1.6;
 margin: 0;
}

.stats-row {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 1rem;
 margin-bottom: 1.5rem;
}

.stat-item {
 background: #fff;
 border-radius: 12px;
 padding: 1.5rem;
 text-align: center;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 border: 2px solid rgba(0, 86, 179, 0.15);
 transition: all 0.3s ease;
}

.stat-item:hover {
 transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(0, 86, 179, 0.2);
 border-color: rgba(0, 86, 179, 0.3);
}

.stat-number {
 font-size: 2rem;
 font-weight: 900;
 margin-bottom: 0.3rem;
 color: #0056b3;
}

.stat-label {
 font-size: 0.95rem;
 font-weight: 600;
 color: #333;
}

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

.mv-item {
 background: #fff;
 border-radius: 12px;
 padding: 1.5rem;
 display: flex;
 gap: 1rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.mv-item:hover {
 transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.mv-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.3rem;
 flex-shrink: 0;
}

.mv-text h3 {
 color: #0056b3;
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
 font-weight: 700;
}

.mv-text p {
 color: #555;
 font-size: 0.9rem;
 line-height: 1.5;
 margin: 0;
}

.team {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 padding: 1.5rem 0;
 margin: 0;
 position: relative;
 min-height: auto;
}

.team-content {
 margin-top: 1rem;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1rem;
}

.team-member-card {
 background: #fff;
 border-radius: 15px;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 overflow: hidden;
 border: 2px solid rgba(0, 86, 179, 0.1);
 transition: all 0.4s ease;
}

.team-member-card:hover {
 box-shadow: 0 8px 30px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.member-header {
 background: linear-gradient(135deg, #0056b3, #0072ef);
 padding: 1.2rem;
 display: flex;
 align-items: center;
 gap: 0.8rem;
}

.member-icon {
 width: 50px;
 height: 50px;
 background: rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.5rem;
 flex-shrink: 0;
}

.member-info h3 {
 color: #fff;
 font-size: 1.4rem;
 margin-bottom: 0.2rem;
 font-weight: 700;
}

.member-role {
 color: rgba(255, 255, 255, 0.9);
 font-size: 0.85rem;
 margin: 0;
 font-weight: 500;
}

.member-body {
 padding: 1.2rem;
}

.member-body p {
 color: #555;
 line-height: 1.6;
 margin-bottom: 1rem;
 font-size: 0.9rem;
}

.member-contact {
 margin-bottom: 1rem;
}

.member-contact a {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 color: #0056b3;
 text-decoration: none;
 font-weight: 600;
 font-size: 0.95rem;
 transition: color 0.3s ease;
}

.member-contact a:hover {
 color: #ff9800;
}

.member-skills {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.skill-tag {
 background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 114, 239, 0.1));
 color: #0056b3;
 padding: 0.4rem 1rem;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 border: 1px solid rgba(0, 86, 179, 0.2);
}

.contact {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 padding: 2rem 0;
 margin: 0;
 position: relative;
 min-height: 100vh;
}

.contact-hero {
 text-align: center;
 margin-bottom: 2rem;
}

.contact-hero h1 {
 color: #0056b3;
 font-size: 2.2rem;
 margin-bottom: 0.5rem;
 font-weight: 800;
}

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

.contact-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 1.5rem;
 margin-top: 1.5rem;
}

.contact-info-cards {
 display: flex;
 flex-direction: column;
 gap: 0.8rem;
}

.contact-info-item {
 background: #fff;
 border-radius: 12px;
 padding: 1rem;
 display: flex;
 align-items: center;
 gap: 0.8rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.contact-info-item:hover {
 transform: translateY(-3px);
 box-shadow: 0 5px 18px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.info-icon {
 width: 45px;
 height: 45px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.2rem;
 flex-shrink: 0;
}

.info-text h4 {
 color: #0056b3;
 font-size: 0.95rem;
 margin-bottom: 0.3rem;
 font-weight: 700;
}

.info-text p {
 color: #555;
 font-size: 0.85rem;
 margin: 0;
 line-height: 1.4;
}

.info-text a {
 color: #0056b3;
 text-decoration: none;
 font-weight: 500;
}

.info-text a:hover {
 color: #ff9800;
}

.contact-form {
 background: #fff;
 border-radius: 12px;
 padding: 1.2rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
}

.contact-form h3 {
 color: #0056b3;
 font-size: 1.2rem;
 margin-bottom: 0.5rem;
 font-weight: 700;
}

.form-subtitle {
 color: #666;
 font-size: 0.9rem;
 margin-bottom: 1.5rem;
 line-height: 1.4;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
 width: 100%;
 padding: 0.6rem;
 margin-bottom: 0.8rem;
 border: 1px solid rgba(0, 86, 179, 0.2);
 border-radius: 8px;
 font-size: 0.85rem;
 font-family: 'Poppins', sans-serif;
 transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
 outline: none;
 border-color: #0056b3;
 box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.contact-form button {
 width: 100%;
 padding: 0.9rem;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 color: #fff;
 border: none;
 border-radius: 8px;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
}

.contact-form button:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.map-section {
 margin-top: 1.5rem;
}

.map-header {
 margin-bottom: 1rem;
}

.map-header h3 {
 color: #0056b3;
 font-size: 1.2rem;
 margin-bottom: 0.3rem;
 font-weight: 700;
}

.map-header p {
 color: #666;
 font-size: 0.9rem;
 margin: 0;
}

.legal-policy {
 background: linear-gradient(135deg, #f0f4f8 0%, #e8f0fe 100%);
 padding: 1.5rem 0;
 margin: 0;
 position: relative;
 min-height: auto;
}

.legal-hero {
 text-align: center;
 margin-bottom: 1.5rem;
 padding: 1.5rem;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 12px;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.legal-hero h1 {
 color: #fff;
 font-size: 2rem;
 margin-bottom: 0.5rem;
 font-weight: 800;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-hero p {
 color: rgba(255, 255, 255, 0.9);
 font-size: 0.95rem;
 margin: 0;
}

.policy-content {
 margin-top: 1.5rem;
}

.policy-card {
 background: #fff;
 border-radius: 15px;
 box-shadow: 0 4px 20px rgba(0, 86, 179, 0.1);
 border: 1px solid rgba(0, 86, 179, 0.15);
 margin-bottom: 1.2rem;
 overflow: hidden;
 transition: all 0.3s ease;
}

.policy-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(0, 86, 179, 0.2);
 border-color: rgba(0, 86, 179, 0.3);
}

.card-header {
 background: linear-gradient(135deg, #0056b3, #0072ef);
 padding: 1.2rem;
 display: flex;
 align-items: center;
 gap: 0.8rem;
 position: relative;
 overflow: hidden;
}

.card-header::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;
}

.policy-card:hover .card-header::before {
 left: 100%;
}

.card-header i {
 color: #fff;
 font-size: 1.4rem;
 background: rgba(255, 255, 255, 0.2);
 width: 45px;
 height: 45px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.card-header h3 {
 color: #fff;
 font-size: 1.1rem;
 margin: 0;
 font-weight: 700;
 letter-spacing: 0.5px;
}

.card-body {
 padding: 1.5rem;
 background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.card-body p {
 color: #444;
 line-height: 1.6;
 margin-bottom: 0.8rem;
 font-size: 0.87rem;
}

.card-body h4 {
 color: #0056b3;
 font-size: 0.95rem;
 margin-bottom: 0.4rem;
 margin-top: 1rem;
 font-weight: 700;
 padding-bottom: 0.3rem;
 border-bottom: 2px solid #0072ef;
 display: inline-block;
}

.card-body h4:first-of-type {
 margin-top: 0;
}

.card-body ul {
 margin: 0.5rem 0 1rem 1.2rem;
 padding: 0;
}

.card-body ul li {
 color: #555;
 font-size: 0.87rem;
 line-height: 1.5;
 margin-bottom: 0.3rem;
 position: relative;
}

.card-body ul li::before {
 content: '•';
 color: #0072ef;
 font-weight: bold;
 position: absolute;
 left: -1rem;
}

.about-main {
 display: flex;
 gap: 2rem;
 align-items: stretch;
 margin-bottom: 1.5rem;
}

.about-text {
 flex: 1;
}

.about-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 color: #fff;
 padding: 0.4rem 1.2rem;
 border-radius: 50px;
 font-weight: 600;
 font-size: 0.85rem;
 margin-bottom: 1rem;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.about-text h3 {
 font-size: 1.5rem;
 color: #0056b3;
 margin-bottom: 1rem;
 font-weight: 700;
}

.about-text p {
 color: #555;
 line-height: 1.6;
 margin-bottom: 1.5rem;
 font-size: 0.95rem;
}

.about-features {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1rem;
 margin-top: 1rem;
}

.about-feature {
 text-align: center;
 padding: 1rem;
 background: #fff;
 border-radius: 12px;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
 border: 1px solid rgba(0, 86, 179, 0.1);
}

.about-feature:hover {
 transform: translateY(-3px);
 box-shadow: 0 5px 18px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.feature-icon {
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 0.5rem;
 color: #fff;
 font-size: 1rem;
}

.feature-text h4 {
 color: #0056b3;
 font-size: 0.9rem;
 margin-bottom: 0.2rem;
 font-weight: 700;
}

.feature-text p {
 color: #666;
 font-size: 0.75rem;
 margin: 0;
 line-height: 1.3;
}

.about-stats {
 flex: 0 0 250px;
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.stat-card {
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 15px;
 padding: 1.5rem;
 text-align: center;
 color: #fff;
 box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.stat-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stat-card:hover {
 transform: translateY(-3px) scale(1.02);
 box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.stat-icon {
 font-size: 1.5rem;
 margin-bottom: 0.3rem;
 position: relative;
 z-index: 1;
}

.stat-number {
 font-size: 2rem;
 font-weight: 800;
 margin-bottom: 0.2rem;
 position: relative;
 z-index: 1;
}

.stat-label {
 font-size: 0.85rem;
 font-weight: 500;
 opacity: 0.9;
 position: relative;
 z-index: 1;
}

.company-info-section {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1rem;
 margin-bottom: 1.5rem;
}

.info-card {
 background: #fff;
 border-radius: 12px;
 padding: 1.2rem;
 display: flex;
 align-items: center;
 gap: 1rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.info-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 5px 18px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.info-icon {
 width: 45px;
 height: 45px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.2rem;
 flex-shrink: 0;
}

.info-content h4 {
 color: #0056b3;
 font-size: 0.9rem;
 margin-bottom: 0.3rem;
 font-weight: 700;
}

.info-content p {
 color: #555;
 font-size: 0.85rem;
 margin: 0;
 line-height: 1.4;
}

.mission-vision-section {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 1rem;
}

.mv-card {
 background: #fff;
 border-radius: 12px;
 padding: 1.5rem;
 display: flex;
 gap: 1rem;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.mv-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 5px 18px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.mv-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.3rem;
 flex-shrink: 0;
}

.mv-content h3 {
 color: #0056b3;
 font-size: 1.1rem;
 margin-bottom: 0.5rem;
 font-weight: 700;
}

.mv-content p {
 color: #555;
 font-size: 0.9rem;
 line-height: 1.5;
 margin: 0;
}
.company-details {
 list-style: none;
 padding: 0;
 margin: 1.5rem 0 0 0;
}
.company-details li {
 margin-bottom: 0.7rem;
 font-size: 1rem;
}
.company-details i {
 color: #0056b3;
 margin-right: 0.5rem;
}
/* Old about-stats rules removed - replaced with new stats-section */

.services {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 padding: 2rem 0;
 margin: 0;
 position: relative;
}

.services::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}
.services h2 {
 color: #0056b3;
 margin-bottom: 1rem;
 font-size: 2.8rem;
 font-weight: 800;
 position: relative;
 display: inline-block;
}

.services h2::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 0;
 width: 60px;
 height: 4px;
 background: linear-gradient(90deg, #0056b3, #ff9800);
 border-radius: 2px;
}
.services .subtitle {
 color: #888;
 margin-bottom: 3rem;
 font-size: 1.2rem;
}
.services-detailed {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
 margin-top: 1.5rem;
}

.service-detail-card {
 background: #fff;
 border-radius: 15px;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
 overflow: hidden;
 border: 2px solid rgba(0, 86, 179, 0.1);
 transition: all 0.4s ease;
}

.service-detail-card:hover {
 box-shadow: 0 5px 20px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.service-detail-header {
 background: linear-gradient(135deg, #0056b3, #0072ef);
 padding: 1.5rem;
 display: flex;
 align-items: center;
 gap: 1rem;
}

.service-detail-icon {
 width: 55px;
 height: 55px;
 background: rgba(255, 255, 255, 0.2);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.5rem;
 flex-shrink: 0;
}

.service-detail-title {
 flex: 1;
}

.service-detail-title h3 {
 color: #fff;
 font-size: 1.4rem;
 margin-bottom: 0.3rem;
 font-weight: 700;
}

.service-detail-title p {
 color: rgba(255, 255, 255, 0.9);
 font-size: 0.9rem;
 margin: 0;
}

.service-detail-body {
 padding: 1.5rem;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
}

.service-detail-section h4 {
 color: #0056b3;
 font-size: 1rem;
 margin-bottom: 0.8rem;
 font-weight: 700;
}

.service-detail-section ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.service-detail-section ul li {
 color: #555;
 padding: 0.3rem 0;
 padding-left: 1.3rem;
 position: relative;
 font-size: 0.9rem;
 line-height: 1.5;
}

.service-detail-section ul li::before {
 content: '✓';
 position: absolute;
 left: 0;
 color: #0056b3;
 font-weight: bold;
}

.tech-tags {
 display: flex;
 flex-wrap: wrap;
 gap: 0.4rem;
}

.tech-tags span {
 background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 114, 239, 0.1));
 color: #0056b3;
 padding: 0.3rem 0.8rem;
 border-radius: 15px;
 font-size: 0.8rem;
 font-weight: 600;
 border: 1px solid rgba(0, 86, 179, 0.2);
}

.service-box {
 background: #fff;
 border-radius: 15px;
 padding: 2rem;
 display: flex;
 align-items: center;
 gap: 1.5rem;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 border: 2px solid transparent;
 position: relative;
 overflow: hidden;
}

.service-box::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
 width: 4px;
 background: linear-gradient(180deg, #0056b3, #ff9800);
 transform: scaleY(0);
 transition: transform 0.4s ease;
}

.service-box:hover {
 transform: translateX(10px);
 box-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
 border-color: rgba(0, 86, 179, 0.2);
}

.service-box:hover::before {
 transform: scaleY(1);
}

.service-box-icon {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0056b3, #0072ef);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.5rem;
 flex-shrink: 0;
 transition: all 0.4s ease;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.service-box:hover .service-box-icon {
 transform: scale(1.1) rotate(5deg);
 background: linear-gradient(135deg, #ff9800, #ffb74d);
 box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.service-box-content {
 flex: 1;
 min-width: 0;
}

.service-box-content h3 {
 font-size: 1.2rem;
 color: #0056b3;
 margin-bottom: 0.5rem;
 font-weight: 700;
 transition: color 0.3s ease;
}

.service-box:hover .service-box-content h3 {
 color: #ff9800;
}

.service-box-content p {
 color: #666;
 line-height: 1.5;
 margin-bottom: 0.8rem;
 font-size: 0.9rem;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 text-overflow: ellipsis;
}

.service-box-features {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
}

.service-box-features li {
 font-size: 0.8rem;
 color: #555;
 padding: 0.3rem 0.8rem;
 background: rgba(0, 86, 179, 0.08);
 border-radius: 15px;
 transition: all 0.3s ease;
}

.service-box:hover .service-box-features li {
 background: rgba(255, 152, 0, 0.1);
 color: #ff9800;
}

.service-box-arrow {
 width: 40px;
 height: 40px;
 background: rgba(0, 86, 179, 0.1);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #0056b3;
 font-size: 1rem;
 transition: all 0.4s ease;
 flex-shrink: 0;
}

.service-box:hover .service-box-arrow {
 background: #ff9800;
 color: #fff;
 transform: translateX(5px);
}
.service-card {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 border-radius: 25px;
 box-shadow: 0 8px 30px rgba(0,0,0,0.1);
 padding: 2.5rem 2rem;
 flex: 1 1 220px;
 text-align: center;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 position: relative;
 overflow: hidden;
 border: 2px solid rgba(0, 86, 179, 0.15);
 min-width: 200px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, #0056b3, #ff9800);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}

.service-card:hover {
 box-shadow: 0 8px 30px rgba(0,86,179,0.15);
 transform: translateY(-10px);
 border-color: rgba(0, 86, 179, 0.2);
}

.service-card:hover::before {
 transform: scaleX(1);
}

.service-icon-wrapper {
 width: 85px;
 height: 85px;
 margin: 0 auto 1.5rem;
 background: linear-gradient(135deg, #0056b3 0%, #0072ef 50%, #0088ff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 8px 25px rgba(0, 86, 179, 0.35);
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 border: 3px solid rgba(255, 255, 255, 0.3);
 position: relative;
}

.service-icon-wrapper::before {
 content: '';
 position: absolute;
 top: -5px;
 left: -5px;
 right: -5px;
 bottom: -5px;
 border-radius: 50%;
 background: linear-gradient(135deg, #ff9800, #ffb74d);
 opacity: 0;
 transition: opacity 0.4s ease;
 z-index: -1;
}

.service-card:hover .service-icon-wrapper {
 transform: scale(1.2) rotate(10deg);
 box-shadow: 0 12px 35px rgba(0, 86, 179, 0.45);
 border-color: rgba(255, 255, 255, 0.5);
}

.service-card:hover .service-icon-wrapper::before {
 opacity: 0.3;
}

.service-icon {
 font-size: 2rem;
 color: #fff;
 margin-bottom: 0;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
 font-size: 1.2rem;
 color: #0056b3;
 margin-bottom: 0.5rem;
 font-weight: 800;
 transition: color 0.3s ease;
 line-height: 1.4;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.service-card:hover h3 {
 color: #ff9800;
 transform: translateY(-2px);
}

.service-card p {
 color: #555;
 line-height: 1.6;
 margin-bottom: 1rem;
 transition: color 0.3s ease;
 font-size: 0.95rem;
 display: block;
}

.service-card:hover p {
 color: #333;
}

.service-features {
 display: none;
 margin-top: 1rem;
 text-align: left;
}

.service-card:hover .service-features {
 display: block;
 animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
 from {
 opacity: 0;
 transform: translateY(10px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.services-cta {
 margin-top: 2rem;
 text-align: center;
}

.services-cta .cta-content {
 background: linear-gradient(135deg, #0056b3 0%, #0072ef 50%, #0088ff 100%);
 border-radius: 25px;
 padding: 1.5rem 1.2rem;
 box-shadow: 0 10px 40px rgba(0, 86, 179, 0.3);
 position: relative;
 overflow: hidden;
}

.services-cta .cta-content::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.services-cta h3 {
 color: #fff;
 font-size: 2rem;
 font-weight: 800;
 margin-bottom: 1rem;
 position: relative;
 z-index: 1;
}

.services-cta p {
 color: rgba(255, 255, 255, 0.9);
 font-size: 1.1rem;
 margin-bottom: 2rem;
 position: relative;
 z-index: 1;
}

.services-cta .btn {
 background: #fff;
 color: #0056b3;
 padding: 1rem 2.5rem;
 font-size: 1.1rem;
 font-weight: 700;
 border-radius: 50px;
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
 position: relative;
 z-index: 1;
 transition: all 0.3s ease;
}

.services-cta .btn:hover {
 background: #ff9800;
 color: #fff;
 transform: translateY(-3px);
 box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.team {
 background: #fff;
 padding: 2rem 0;
 margin: 0;
 position: relative;
}

.team::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}
.team h2 {
 color: #0056b3;
 margin-bottom: 1rem;
 text-align: center;
 font-size: 2.8rem;
 font-weight: 800;
 position: relative;
 display: inline-block;
}

.team h2::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 height: 4px;
 background: linear-gradient(90deg, #0056b3, #ff9800);
 border-radius: 2px;
}
.team-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 2.5rem;
 justify-content: center;
 margin-top: 2rem;
}
.team-card {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 border-radius: 20px;
 padding: 2.5rem 2rem;
 text-align: center;
 flex: 1 1 280px;
 max-width: 300px;
 margin: 0 auto;
 box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 position: relative;
 overflow: hidden;
 border: 1px solid rgba(0, 86, 179, 0.1);
}

.team-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, #ff9800, #ffb74d);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}

.team-card:hover {
 box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
 transform: translateY(-10px);
 border-color: rgba(255, 152, 0, 0.2);
}

.team-card:hover::before {
 transform: scaleX(1);
}

.team-icon-wrapper {
 width: 100px;
 height: 100px;
 margin: 0 auto 1.5rem;
 background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
 transition: all 0.4s ease;
}

.team-card:hover .team-icon-wrapper {
 transform: scale(1.1) rotate(-5deg);
 box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
}

.team-icon {
 font-size: 2.5rem;
 color: #fff;
 margin-bottom: 0;
}

.team-card h3 {
 font-size: 1.5rem;
 color: #0056b3;
 margin-bottom: 0.5rem;
 font-weight: 700;
 transition: color 0.3s ease;
}

.team-card:hover h3 {
 color: #ff9800;
}

.team-role {
 color: #ff9800;
 font-weight: 600;
 margin-bottom: 1rem;
 font-size: 1rem;
}

.team-email {
 color: #555;
 margin-bottom: 1.5rem;
 transition: color 0.3s ease;
}

.team-email a {
 color: #0056b3;
 text-decoration: none;
 transition: color 0.3s ease;
}

.team-email a:hover {
 color: #ff9800;
}

.team-skills {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 justify-content: center;
}

.skill-tag {
 background: rgba(0, 86, 179, 0.1);
 color: #0056b3;
 padding: 0.4rem 0.8rem;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 500;
 transition: all 0.3s ease;
 border: 1px solid rgba(0, 86, 179, 0.2);
}

.team-card:hover .skill-tag {
 background: rgba(255, 152, 0, 0.1);
 color: #ff9800;
 border-color: rgba(255, 152, 0, 0.3);
}

.contact {
 background: #f8f9fa;
 padding: 2rem 0;
 margin: 0;
 position: relative;
}

.contact::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}
.contact h2 {
 color: #0056b3;
 margin-bottom: 1rem;
 text-align: center;
 font-size: 2.8rem;
 font-weight: 800;
 position: relative;
 display: inline-block;
}

.contact h2::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 height: 4px;
 background: linear-gradient(90deg, #0056b3, #ff9800);
 border-radius: 2px;
}
.contact-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 3rem;
 align-items: flex-start;
 margin-top: 2rem;
}
.contact-info {
 flex: 1 1 300px;
 font-size: 1rem;
}
.contact-info p {
 margin: 0 0 1rem 0;
}
.contact-info i {
 color: #0056b3;
 margin-right: 0.5rem;
}
.contact-form {
 flex: 1 1 350px;
 background: #fff;
 border-radius: 20px;
 padding: 2.5rem 2rem;
 box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
 border: 1px solid rgba(0, 86, 179, 0.1);
 transition: all 0.3s ease;
}

.contact-form:hover {
 box-shadow: 0 8px 30px rgba(0,86,179,0.12);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
 width: 100%;
 padding: 1rem;
 border: 2px solid #e9ecef;
 border-radius: 12px;
 font-size: 1rem;
 font-family: inherit;
 transition: all 0.3s ease;
 background: #f8f9fa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
 border-color: #0056b3;
 background: #fff;
 box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
 outline: none;
}

.contact-form label {
 font-weight: 600;
 color: #0056b3;
 margin-bottom: 0.5rem;
 font-size: 0.95rem;
}

.contact-form button {
 align-self: flex-start;
 padding: 1rem 2.5rem;
 font-size: 1rem;
}

.footer {
 background: #0056b3;
 color: #fff;
 padding: 2rem 0 0 0;
}
.footer-content {
 display: flex;
 flex-wrap: wrap;
 gap: 2rem;
 justify-content: space-between;
 align-items: flex-start;
 width: 90%;
 margin: 0 auto;
}
.footer h3, .footer h4 {
 margin-top: 0;
 color: #ff9800;
}
.footer p {
 margin: 0.5rem 0;
}
.social-links {
 display: flex;
 gap: 1rem;
 margin-top: 0.5rem;
}
.social-links a {
 color: #fff;
 font-size: 1.3rem;
 transition: color 0.2s;
}
.social-links a:hover {
 color: #ff9800;
}
.footer-bottom {
 background: #003366;
 color: #fff;
 text-align: center;
 padding: 1rem 0;
 margin-top: 2rem;
 font-size: 0.95rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
 .container {
 width: 95%;
 max-width: 1000px;
 }

 .nav-container {
 padding: 1.3rem 0;
 }

 .nav-logo {
 padding: 8px 20px;
 }

 .logo-text {
 font-size: 1.6rem;
 letter-spacing: 1.3px;
 }

 .logo-text::after {
 left: 11em;
 width: 0.4rem;
 height: 0.4rem;
 }

 .nav-menu {
 gap: 1.8rem;
 }

 .nav-menu a {
 font-size: 1.05rem;
 padding: 0.9rem 1.4rem;
 }

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

 .hero h2 {
 font-size: 1.3rem;
 }
}

@media (max-width: 1024px) {
 .nav-container {
 padding: 1.2rem 0;
 }

 .nav-logo {
 padding: 7px 18px;
 }

 .logo-text {
 font-size: 1.5rem;
 letter-spacing: 1.2px;
 }

 .logo-text::after {
 left: 10.5em;
 width: 0.35rem;
 height: 0.35rem;
 }

 .nav-menu {
 gap: 1.5rem;
 }

 .nav-menu a {
 font-size: 1rem;
 padding: 0.8rem 1.2rem;
 }

 .hero-content {
 gap: 1.5rem;
 }

 .services-grid {
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 }
}

@media (max-width: 900px) {
 .hero-content, .about-grid, .services-grid, .contact-grid, .footer-content {
 flex-direction: column;
 align-items: stretch;
 }

 .nav-menu {
 gap: 1rem;
 flex-wrap: wrap;
 justify-content: center;
 font-size: 0.9rem;
 }

 .nav-logo {
 margin-bottom: 1rem;
 }

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

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

 .hero h2 {
 font-size: 1.2rem;
 }

 /* Old about-stats rules removed */
}

@media (max-width: 768px) {
 .container {
 width: 92%;
 }

 .nav-container {
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 padding: 1rem 0;
 position: relative;
 }

 .nav-toggle {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 25px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 0;
 z-index: 1000;
 }

 .nav-toggle span {
 width: 100%;
 height: 3px;
 background: #ffffff;
 border-radius: 2px;
 transition: all 0.3s ease;
 }

 .nav-toggle.active span:nth-child(1) {
 transform: rotate(45deg) translate(6px, 6px);
 }

 .nav-toggle.active span:nth-child(2) {
 opacity: 0;
 }

 .nav-toggle.active span:nth-child(3) {
 transform: rotate(-45deg) translate(6px, -6px);
 }

 .nav-menu {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: #0056b3;
 flex-direction: column;
 padding: 1.5rem;
 box-shadow: 0 8px 25px rgba(0,0,0,0.15);
 z-index: 999;
 border-radius: 0 0 15px 15px;
 border-top: 2px solid rgba(255, 255, 255, 0.1);
 }

 .nav-menu.active {
 display: flex;
 animation: slideDown 0.3s ease-out;
 }

 @keyframes slideDown {
 from {
 opacity: 0;
 transform: translateY(-10px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .nav-menu li {
 width: 100%;
 text-align: center;
 margin: 0.8rem 0;
 opacity: 0;
 animation: fadeInUp 0.4s ease-out forwards;
 }

 .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
 .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
 .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
 .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
 .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
 .nav-menu li:nth-child(6) { animation-delay: 0.6s; }

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

 .nav-menu a {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1rem 1.5rem;
 border-radius: 8px;
 transition: all 0.3s ease;
 font-size: 1.1rem;
 font-weight: 500;
 border: 1px solid rgba(255, 255, 255, 0.3);
 background: rgba(255, 255, 255, 0.15);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }

 .nav-menu a i {
 margin-right: 0.8rem;
 font-size: 1.2rem;
 }

 .nav-menu a:hover,
 .nav-menu a.active {
 background: rgba(255, 255, 255, 0.15);
 border-color: rgba(255, 255, 255, 0.3);
 transform: translateY(-2px);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }

 .hero {
 padding: 3rem 0 2rem 0;
 }

 .hero-content {
 text-align: center;
 }

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

 .hero h2 {
 font-size: 1.1rem;
 }

 .hero-buttons {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 1rem;
 }

 .btn {
 margin: 0;
 width: 100%;
 max-width: 250px;
 }

 .about, .services, .team, .contact {
 padding: 2.5rem 0;
 }

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.5rem;
 }

 .team-grid {
 flex-direction: column;
 gap: 1.5rem;
 align-items: center;
 justify-content: center;
 }

 .contact-grid {
 gap: 2rem;
 }

 .footer-content {
 flex-direction: column;
 text-align: center;
 gap: 1.5rem;
 }

 .nav-logo {
 padding: 6px 15px;
 min-width: auto;
 flex-shrink: 0;
 }

 .logo-text {
 font-size: 1.4rem;
 padding-left: 0;
 letter-spacing: 1px;
 white-space: nowrap;
 }

 .logo-text::after {
 left: 9.8em;
 width: 0.3rem;
 height: 0.3rem;
 }
}

@media (max-width: 600px) {
 .container {
 width: 95%;
 }

 .nav-container {
 padding: 0.8rem 0;
 }

 .nav-toggle {
 width: 28px;
 height: 22px;
 }

 .nav-toggle span {
 height: 2.5px;
 }

 .nav-menu {
 padding: 1.2rem;
 border-radius: 0 0 12px 12px;
 }

 .nav-menu a {
 padding: 0.9rem 1.2rem;
 font-size: 1rem;
 }

 .nav-menu a i {
 margin-right: 0.6rem;
 font-size: 1.1rem;
 }

 .hero {
 padding: 2rem 0;
 }

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

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

 .about, .services, .team, .contact {
 padding: 3rem 0;
 }

 .footer-content {
 gap: 1rem;
 flex-direction: column;
 align-items: center;
 text-align: center;
 }

 .btn, .btn-primary, .btn-secondary {
 width: 100%;
 margin: 0.5rem 0 0 0;
 font-size: 1rem;
 padding: 0.8rem 1rem;
 }

 .contact-form input,
 .contact-form select,
 .contact-form textarea {
 font-size: 1rem;
 padding: 0.8rem;
 }

 .nav-logo {
 padding: 5px 12px;
 min-width: auto;
 }

 .logo-text {
 font-size: 1.2rem;
 padding-left: 0;
 letter-spacing: 0.5px;
 white-space: nowrap;
 }

 .logo-text::after {
 left: 8.2em;
 width: 0.25rem;
 height: 0.25rem;
 }

 .logo-text::after {
 left: 8.8em;
 width: 0.25rem;
 height: 0.25rem;
 }

 .hero-icons {
 font-size: 2rem;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
 }

 /* Old about-stats rules removed */

 .service-card h3 {
 font-size: 1.2rem;
 }

 .service-card p {
 font-size: 0.9rem;
 }

 .team-card h3 {
 font-size: 1.3rem;
 }

 .footer {
 padding: 2rem 0 1rem 0;
 }
}

@media (max-width: 480px) {
 .container {
 width: 98%;
 }

 .nav-container {
 padding: 0.6rem 0;
 }

 .nav-toggle {
 width: 25px;
 height: 20px;
 }

 .nav-toggle span {
 height: 2px;
 }

 .nav-menu {
 padding: 1rem;
 border-radius: 0 0 10px 10px;
 }

 .nav-menu a {
 padding: 0.8rem 1rem;
 font-size: 0.95rem;
 }

 .nav-menu a i {
 margin-right: 0.5rem;
 font-size: 1rem;
 }

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

 .hero h2 {
 font-size: 0.9rem;
 }

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

 .nav-logo {
 padding: 4px 10px;
 min-width: auto;
 }

 .logo-text {
 font-size: 1rem;
 padding-left: 0;
 letter-spacing: 0.3px;
 white-space: nowrap;
 }

 .logo-text::after {
 left: 6.8em;
 width: 0.2rem;
 height: 0.2rem;
 }

 .btn {
 padding: 0.7rem 1.2rem;
 font-size: 0.85rem;
 }

 .service-card {
 padding: 1.2rem;
 }

 .service-icon {
 font-size: 2rem;
 }

 .team-icon {
 font-size: 2.5rem;
 }

 .contact-info,
 .contact-form {
 padding: 1.5rem;
 }
}

@media (max-width: 360px) {
 .hero h1 {
 font-size: 1.3rem;
 }

 .hero h2 {
 font-size: 0.85rem;
 }

 .logo-text {
 font-size: 1rem;
 padding-left: 0;
 }

 .logo-text::after {
 left: 6.8em;
 }

 .btn {
 padding: 0.6rem 1rem;
 font-size: 0.8rem;
 }
}

/* Print Styles */
@media print {
 .navbar,
 .hero-buttons,
 .footer {
 display: none;
 }

 body {
 background: white;
 color: black;
 }

 .container {
 width: 100%;
 max-width: none;
 }

 .hero {
 background: white;
 color: black;
 }

 .service-card,
 .team-card {
 border: 1px solid #ccc;
 break-inside: avoid;
 }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
 .btn-primary {
 background: #000;
 color: #fff;
 border: 2px solid #000;
 }

 .btn-secondary {
 background: #fff;
 color: #000;
 border: 2px solid #000;
 }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
 * {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 }

 html {
 scroll-behavior: auto;
 }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
 body {
 background: #1a1a1a;
 color: #e0e0e0;
 }

 .about,
 .services,
 .team,
 .contact {
 background: #2d2d2d;
 }

 .service-card,
 .team-card {
 background: #3d3d3d;
 color: #e0e0e0;
 }

 .contact-info {
 background: #3d3d3d;
 }

 .footer {
 background: #1a1a1a;
 color: #e0e0e0;
 }
}

/* Policy Pages Specific Styles */
.legal-policy,
.refund-policy {
 background: #fff;
 padding: 3rem 0;
 min-height: 80vh;
}

.legal-policy .container,
.refund-policy .container {
 max-width: 900px;
 margin: 0 auto;
 padding: 0 1rem;
}

.legal-policy h2,
.refund-policy h2 {
 color: #0056b3;
 font-size: 2.5rem;
 text-align: center;
 margin-bottom: 0.5rem;
 font-weight: 700;
}

.legal-policy .subtitle,
.refund-policy .subtitle {
 color: #666;
 text-align: center;
 font-size: 1.1rem;
 margin-bottom: 3rem;
 font-weight: 400;
}

.legal-policy h3,
.refund-policy h3 {
 color: #0056b3;
 font-size: 1.8rem;
 margin: 2.5rem 0 1rem 0;
 padding-bottom: 0.5rem;
 border-bottom: 2px solid #ff9800;
 font-weight: 600;
}

.legal-policy h4,
.refund-policy h4 {
 color: #333;
 font-size: 1.3rem;
 margin: 1.5rem 0 0.8rem 0;
 font-weight: 600;
}

.legal-policy p,
.refund-policy p {
 color: #444;
 font-size: 1rem;
 line-height: 1.7;
 margin-bottom: 1rem;
 text-align: justify;
}

.legal-policy ul,
.refund-policy ul,
.legal-policy ol,
.refund-policy ol {
 color: #444;
 font-size: 1rem;
 line-height: 1.7;
 margin: 1rem 0 1.5rem 2rem;
}

.legal-policy li,
.refund-policy li {
 margin-bottom: 0.5rem;
 color: #444;
}

.legal-policy strong,
.refund-policy strong {
 color: #0056b3;
 font-weight: 600;
}

/* Company Information Box */
.legal-policy h3:first-of-type + p,
.refund-policy h3:first-of-type + p {
 background: #f8f9fa;
 padding: 1.5rem;
 border-radius: 10px;
 border-left: 4px solid #0056b3;
 margin: 1.5rem 0;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Section Spacing */
.legal-policy > div > div > div,
.refund-policy > div > div > div {
 background: #fff;
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 margin-bottom: 2rem;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
 .legal-policy h2,
 .refund-policy h2 {
 font-size: 2rem;
 }

 .legal-policy h3,
 .refund-policy h3 {
 font-size: 1.5rem;
 }

 .legal-policy h4,
 .refund-policy h4 {
 font-size: 1.2rem;
 }

 .legal-policy .container,
 .refund-policy .container {
 padding: 0 0.5rem;
 }

 .legal-policy > div > div > div,
 .refund-policy > div > div > div {
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 }
}

@media (max-width: 480px) {
 .legal-policy h2,
 .refund-policy h2 {
 font-size: 1.8rem;
 }

 .legal-policy h3,
 .refund-policy h3 {
 font-size: 1.3rem;
 }

 .legal-policy h4,
 .refund-policy h4 {
 font-size: 1.1rem;
 }

 .legal-policy p,
 .refund-policy p,
 .legal-policy ul,
 .refund-policy ul,
 .legal-policy ol,
 .refund-policy ol {
 font-size: 0.95rem;
 }

 .legal-policy > div > div > div,
 .refund-policy > div > div > div {
 padding: 1rem;
 margin-bottom: 1rem;
 }
}

/* Print Styles for Policy Pages */
@media print {
 .legal-policy,
 .refund-policy {
 background: white;
 color: black;
 }

 .legal-policy h2,
 .refund-policy h2,
 .legal-policy h3,
 .refund-policy h3,
 .legal-policy h4,
 .refund-policy h4 {
 color: black;
 }

 .legal-policy p,
 .refund-policy p,
 .legal-policy li,
 .refund-policy li {
 color: black;
 }

 .legal-policy > div > div > div,
 .refund-policy > div > div > div {
 box-shadow: none;
 border: 1px solid #ccc;
 }
}

/* Additional Policy Page Styles */
.policy-content {
 max-width: 900px;
 margin: 0 auto;
 line-height: 1.6;
}

.company-info,
.terms-section,
.privacy-section,
.disclaimer-section,
.overview-section,
.general-terms-section,
.service-specific-section,
.refund-process-section,
.non-refundable-section,
.dispute-resolution-section,
.contact-section,
.updates-section {
 background: #fff;
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 margin-bottom: 2rem;
 border-left: 4px solid #0056b3;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info:hover,
.terms-section:hover,
.privacy-section:hover,
.disclaimer-section:hover,
.overview-section:hover,
.general-terms-section:hover,
.service-specific-section:hover,
.refund-process-section:hover,
.non-refundable-section:hover,
.dispute-resolution-section:hover,
.contact-section:hover,
.updates-section:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-info-box {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 padding: 1.5rem;
 border-radius: 10px;
 border: 1px solid #dee2e6;
 margin: 1rem 0;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info-box p {
 margin: 0;
 line-height: 1.8;
}

.contact-info-box i {
 color: #0056b3;
 margin-right: 0.5rem;
 width: 20px;
}

/* Icons in headings */
.legal-policy h2 i,
.refund-policy h2 i,
.legal-policy h3 i,
.refund-policy h3 i {
 margin-right: 0.5rem;
 color: #ff9800;
}

/* Enhanced list styling */
.legal-policy ul,
.refund-policy ul,
.legal-policy ol,
.refund-policy ol {
 background: #f8f9fa;
 padding: 1rem 1.5rem;
 border-radius: 8px;
 border-left: 3px solid #0056b3;
 margin: 1rem 0 1.5rem 0;
}

.legal-policy li,
.refund-policy li {
 margin-bottom: 0.8rem;
 position: relative;
 padding-left: 0.5rem;
}

.legal-policy li:before,
.refund-policy li:before {
 content: "•";
 color: #0056b3;
 font-weight: bold;
 position: absolute;
 left: -1rem;
}

/* Enhanced paragraph styling */
.legal-policy p,
.refund-policy p {
 background: #fff;
 padding: 1rem;
 border-radius: 8px;
 border: 1px solid #e9ecef;
 margin-bottom: 1rem;
 box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Section headers with better styling */
.legal-policy h3,
.refund-policy h3 {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: white;
 padding: 1rem 1.5rem;
 border-radius: 10px;
 margin: 2rem 0 1.5rem 0;
 box-shadow: 0 4px 8px rgba(0,86,179,0.3);
 border: none;
}

.legal-policy h4,
.refund-policy h4 {
 background: #f8f9fa;
 color: #0056b3;
 padding: 0.8rem 1rem;
 border-radius: 8px;
 margin: 1.5rem 0 1rem 0;
 border-left: 4px solid #ff9800;
 font-weight: 600;
}

/* Company info special styling */
.company-info {
 background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
 border-left: 4px solid #2196f3;
}

.company-info h3 {
 background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

/* Responsive improvements */
@media (max-width: 768px) {
 .policy-content {
 padding: 0 0.5rem;
 }

 .company-info,
 .terms-section,
 .privacy-section,
 .disclaimer-section,
 .overview-section,
 .general-terms-section,
 .service-specific-section,
 .refund-process-section,
 .non-refundable-section,
 .dispute-resolution-section,
 .contact-section,
 .updates-section {
 padding: 1.5rem;
 margin-bottom: 1.5rem;
 }

 .legal-policy h3,
 .refund-policy h3 {
 padding: 0.8rem 1rem;
 font-size: 1.3rem;
 }

 .legal-policy h4,
 .refund-policy h4 {
 padding: 0.6rem 0.8rem;
 font-size: 1.1rem;
 }
}

@media (max-width: 480px) {
 .company-info,
 .terms-section,
 .privacy-section,
 .disclaimer-section,
 .overview-section,
 .general-terms-section,
 .service-specific-section,
 .refund-process-section,
 .non-refundable-section,
 .dispute-resolution-section,
 .contact-section,
 .updates-section {
 padding: 1rem;
 margin-bottom: 1rem;
 }

 .legal-policy h3,
 .refund-policy h3 {
 padding: 0.6rem 0.8rem;
 font-size: 1.2rem;
 }

 .legal-policy h4,
 .refund-policy h4 {
 padding: 0.5rem 0.6rem;
 font-size: 1rem;
 }

 .contact-info-box {
 padding: 1rem;
 }
}

/* Enhanced Contact Page Styles */
.contact {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 padding: 4rem 0;
 min-height: 80vh;
}

.contact h2 {
 text-align: center;
 color: #0056b3;
 font-size: 2.5rem;
 margin-bottom: 1rem;
 font-weight: 700;
}

.contact h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.contact .subtitle {
 text-align: center;
 color: #666;
 font-size: 1.2rem;
 margin-bottom: 3rem;
 font-weight: 400;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 margin-bottom: 3rem;
}

/* Contact Information Section */
.contact-info {
 background: #fff;
 padding: 2.5rem;
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.contact-header {
 text-align: center;
 margin-bottom: 2rem;
 padding-bottom: 1.5rem;
 border-bottom: 2px solid #0056b3;
}

.contact-header h4 {
 color: #0056b3;
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 font-weight: 600;
}

.contact-header h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.contact-subtitle {
 color: #666;
 font-size: 1rem;
 margin: 0;
}

/* Contact Cards */
.contact-cards {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
 margin-bottom: 2rem;
}

.contact-card {
 display: flex;
 align-items: center;
 padding: 1.5rem;
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 border-radius: 15px;
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
 box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.contact-icon {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-right: 1.5rem;
 flex-shrink: 0;
 box-shadow: 0 4px 15px rgba(0,86,179,0.3);
}

.contact-icon i {
 color: #fff;
 font-size: 1.5rem;
}

.contact-details h5 {
 color: #0056b3;
 font-size: 1.1rem;
 margin: 0 0 0.5rem 0;
 font-weight: 600;
}

.contact-details p {
 color: #444;
 margin: 0;
 line-height: 1.5;
}

.contact-details a {
 color: #0056b3;
 text-decoration: none;
 transition: color 0.3s ease;
}

.contact-details a:hover {
 color: #ff9800;
 text-decoration: underline;
}

/* Contact Actions */
.contact-actions {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
}

.map-btn, .call-btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 2rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-btn {
 background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
 color: #fff;
}

.map-btn:hover {
 background: linear-gradient(135deg, #495057 0%, #343a40 100%);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0,0,0,0.2);
 color: #fff;
}

.call-btn {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
}

.call-btn:hover {
 background: linear-gradient(135deg, #004085 0%, #0056b3 100%);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0,86,179,0.3);
 color: #fff;
}

/* Inquiry Form Section */
.inquiry-form {
 background: #fff;
 padding: 2.5rem;
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.form-header {
 text-align: center;
 margin-bottom: 2rem;
 padding-bottom: 1.5rem;
 border-bottom: 2px solid #0056b3;
}

.form-header h4 {
 color: #0056b3;
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 font-weight: 600;
}

.form-header h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.form-subtitle {
 color: #666;
 font-size: 1rem;
 margin: 0;
}

/* Form Styling */
.form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1rem;
 margin-bottom: 1rem;
}

.form-group {
 margin-bottom: 1.5rem;
}

.form-group label {
 display: block;
 color: #0056b3;
 font-weight: 600;
 margin-bottom: 0.5rem;
 font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 0.7rem;
 border: 1px solid #ccc;
 border-radius: 5px;
 font-size: 1rem;
 font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: #0056b3;
 background: #fff;
 box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.form-group textarea {
 resize: vertical;
 min-height: 120px;
}

/* Submit Button */
.submit-btn {
 width: 100%;
 padding: 1rem;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
 border: none;
 border-radius: 10px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,86,179,0.3);
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
}

.submit-btn:hover {
 background: linear-gradient(135deg, #004085 0%, #0056b3 100%);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0,86,179,0.4);
}

/* Payment Section */
.payment-section {
 text-align: center;
 margin-top: 2rem;
 padding-top: 2rem;
}

.payment-divider {
 position: relative;
 margin: 2rem 0;
 text-align: center;
}

.payment-divider::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 0;
 right: 0;
 height: 1px;
 background: #e9ecef;
}

.payment-divider span {
 background: #fff;
 padding: 0 1rem;
 color: #666;
 font-size: 0.9rem;
 position: relative;
 z-index: 1;
}

.paypal-btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.8rem 1.5rem;
 background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%);
 color: #fff;
 text-decoration: none;
 border-radius: 30px;
 font-weight: 600;
 font-size: 0.95rem;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,112,186,0.3);
}

.paypal-btn:hover {
 background: linear-gradient(135deg, #005ea6 0%, #004085 100%);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0,112,186,0.4);
 color: #fff;
}

.payment-note {
 margin-top: 1rem;
 color: #666;
 font-size: 0.95rem;
 font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
 .contact-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .contact-info,
 .inquiry-form {
 padding: 2rem;
 }

 .form-row {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .contact {
 padding: 3rem 0;
 }

 .contact h2 {
 font-size: 2rem;
 }

 .contact-header h4,
 .form-header h4 {
 font-size: 1.5rem;
 }

 .contact-card {
 padding: 1rem;
 }

 .contact-icon {
 width: 50px;
 height: 50px;
 margin-right: 1rem;
 }

 .contact-icon i {
 font-size: 1.2rem;
 }

 .contact-details h5 {
 font-size: 1rem;
 }

 .contact-actions {
 flex-direction: column;
 align-items: center;
 }

 .map-btn, .call-btn {
 width: 100%;
 max-width: 300px;
 justify-content: center;
 }

 .submit-btn {
 font-size: 1rem;
 padding: 0.8rem;
 }
}

@media (max-width: 480px) {
 .contact-info,
 .inquiry-form {
 padding: 1.5rem;
 }

 .contact-card {
 flex-direction: column;
 text-align: center;
 padding: 1.5rem;
 }

 .contact-icon {
 margin-right: 0;
 margin-bottom: 1rem;
 }

 .contact-details h5 {
 font-size: 0.95rem;
 }

 .contact-details p {
 font-size: 0.9rem;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
 padding: 0.8rem 1rem;
 font-size: 0.95rem;
 }

 .submit-btn {
 font-size: 0.95rem;
 padding: 0.8rem;
 }
}

/* Enhanced Services Page Styles */
.services {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 padding: 4rem 0;
 min-height: 80vh;
}

.services h2 {
 text-align: center;
 color: #0056b3;
 font-size: 2.5rem;
 margin-bottom: 1rem;
 font-weight: 700;
}

.services h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.services .subtitle {
 text-align: center;
 color: #666;
 font-size: 1.2rem;
 margin-bottom: 3rem;
 font-weight: 400;
}

.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2rem;
 margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
 background: #fff;
 padding: 2.5rem;
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.service-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 8px 25px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
 transform: scale(1.1);
 box-shadow: 0 12px 35px rgba(0,86,179,0.4);
}

.service-icon {
 color: #fff;
 font-size: 2rem;
}

/* Service Card Content */
.service-card h3 {
 color: #0056b3;
 font-size: 1.5rem;
 text-align: center;
 margin-bottom: 1rem;
 font-weight: 600;
}

.service-card p {
 color: #444;
 font-size: 1rem;
 line-height: 1.6;
 margin-bottom: 1.5rem;
 text-align: center;
}

/* Enhanced Bold Text Styling */
.service-card strong {
 color: #0056b3;
 font-weight: 600;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 position: relative;
}

.service-card strong::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 right: 0;
 height: 2px;
 background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.service-card:hover strong::after {
 transform: scaleX(1);
}

/* Service Features Section */
.service-features {
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 padding: 1.5rem;
 border-radius: 15px;
 border: 1px solid #e9ecef;
 margin-top: 1.5rem;
}

.service-features h4 {
 color: #0056b3;
 font-size: 1.1rem;
 margin-bottom: 1rem;
 font-weight: 600;
 text-align: center;
}

.service-features ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.service-features li {
 color: #444;
 font-size: 0.95rem;
 line-height: 1.6;
 margin-bottom: 0.8rem;
 padding-left: 1.5rem;
 position: relative;
 transition: all 0.3s ease;
}

.service-features li::before {
 content: '✓';
 position: absolute;
 left: 0;
 color: #28a745;
 font-weight: bold;
 font-size: 1rem;
}

.service-features li:hover {
 color: #0056b3;
 transform: translateX(5px);
}

.service-features li strong {
 color: #0056b3;
 font-weight: 600;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* Payment Section */
.payment-section {
 text-align: center;
 margin: 3rem 0;
 padding: 3rem;
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.payment-content h3 {
 color: #0056b3;
 font-size: 2rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.payment-content h3 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.payment-content p {
 color: #666;
 font-size: 1.1rem;
 margin-bottom: 2rem;
}

.paypal-btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 2.5rem;
 background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%);
 color: #fff;
 text-decoration: none;
 border-radius: 50px;
 font-weight: 600;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 box-shadow: 0 6px 20px rgba(0,112,186,0.3);
}

.paypal-btn:hover {
 background: linear-gradient(135deg, #005ea6 0%, #004085 100%);
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(0,112,186,0.4);
 color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
 .hero-stats {
 gap: 2rem;
 }

 .overview-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .mission-vision-grid {
 grid-template-columns: 1fr;
 }

 .stats-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 768px) {
 .about-hero-section {
 padding: 3rem 1.5rem;
 }

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

 .hero-subtitle {
 font-size: 1.1rem;
 }

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

 .hero-stats {
 flex-direction: column;
 gap: 1rem;
 }

 .quick-stat {
 padding: 0.8rem;
 }

 .quick-stat .stat-number {
 font-size: 2rem;
 }

 .overview-header h2,
 .section-header h2 {
 font-size: 2rem;
 }

 .overview-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .overview-card {
 padding: 1.5rem;
 }

 .card-icon {
 width: 70px;
 height: 70px;
 }

 .card-icon i {
 font-size: 1.8rem;
 }

 .mission-card,
 .vision-card {
 padding: 2rem;
 }

 .header-icon {
 width: 50px;
 height: 50px;
 }

 .header-icon i {
 font-size: 1.3rem;
 }

 .stats-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .stat-card {
 padding: 1.5rem 1rem;
 }

 .stat-icon {
 width: 70px;
 height: 70px;
 }

 .stat-icon i {
 font-size: 1.8rem;
 }

 .stat-number {
 font-size: 2.5rem;
 }

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.5rem;
 }

 .service-icon {
 width: 70px;
 height: 70px;
 }

 .service-icon i {
 font-size: 1.8rem;
 }

 .payment-section {
 padding: 2rem;
 }

 .payment-content h3 {
 font-size: 1.6rem;
 }
}

@media (max-width: 480px) {
 .about-hero-section {
 padding: 2rem 1rem;
 }

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

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

 .hero-description {
 font-size: 0.95rem;
 }

 .overview-header h2,
 .section-header h2 {
 font-size: 1.6rem;
 }

 .overview-card,
 .mission-card,
 .vision-card,
 .stat-card,
 .service-card {
 padding: 1.2rem;
 }

 .card-icon,
 .stat-icon,
 .service-icon {
 width: 60px;
 height: 60px;
 }

 .card-icon i,
 .stat-icon i,
 .service-icon i {
 font-size: 1.5rem;
 }

 .stat-number {
 font-size: 2rem;
 }

 .payment-section {
 padding: 1.5rem;
 }

 .payment-content h3 {
 font-size: 1.4rem;
 }

 .paypal-btn {
 padding: 0.8rem 2rem;
 font-size: 1rem;
 }
}

/* Responsive Design - Mobile First Approach */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
 .container {
 max-width: 1320px;
 }

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

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

 .services-grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px) {
 .container {
 max-width: 1140px;
 }

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

 .hero h2 {
 font-size: 1.6rem;
 }

 .services-grid {
 grid-template-columns: repeat(3, 1fr);
 }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
 .container {
 max-width: 960px;
 }

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

 .hero h2 {
 font-size: 1.5rem;
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }

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

/* Small Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
 .container {
 max-width: 720px;
 }

 .nav-menu {
 display: flex;
 flex-wrap: wrap;
 gap: 1rem;
 }

 .nav-menu li {
 margin: 0;
 }

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

 .hero h2 {
 font-size: 1.3rem;
 }

 .hero-content {
 text-align: center;
 }

 .about-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }

 .team-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 }

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

 .footer-content {
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 }

 .form-row {
 grid-template-columns: 1fr;
 }
}

/* Extra Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
 .container {
 max-width: 540px;
 }

 .nav-container {
 flex-direction: column;
 gap: 1rem;
 }

 .nav-menu {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0.5rem;
 }

 .nav-menu li {
 margin: 0;
 }

 .nav-menu a {
 padding: 0.5rem 0.8rem;
 font-size: 0.9rem;
 }

 .hero {
 padding: 3rem 0;
 }

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

 .hero h2 {
 font-size: 1.2rem;
 }

 .hero-buttons {
 flex-direction: column;
 gap: 1rem;
 align-items: center;
 }

 .btn {
 width: 100%;
 max-width: 300px;
 text-align: center;
 }

 .about, .services, .team, .contact {
 padding: 3rem 0;
 }

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.5rem;
 }

 .team-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 align-items: center;
 justify-content: center;
 }

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

 .contact-info, .inquiry-form {
 padding: 1.5rem;
 }

 .contact-card {
 flex-direction: column;
 text-align: center;
 padding: 1.5rem;
 }

 .contact-icon {
 margin-right: 0;
 margin-bottom: 1rem;
 }

 .contact-actions {
 flex-direction: column;
 align-items: center;
 }

 .map-btn, .call-btn {
 width: 100%;
 max-width: 300px;
 justify-content: center;
 }

 .footer-content {
 grid-template-columns: 1fr;
 gap: 2rem;
 text-align: center;
 }

 .social-links {
 justify-content: center;
 }
}

/* Mobile Devices (up to 575px) */
@media (max-width: 575px) {
 .container {
 max-width: 100%;
 padding: 0 1rem;
 }

 .nav-container {
 flex-direction: column;
 gap: 1rem;
 }

 .nav-menu {
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
 width: 100%;
 }

 .nav-menu li {
 margin: 0;
 width: 100%;
 }

 .nav-menu a {
 display: block;
 padding: 0.8rem 1rem;
 text-align: center;
 border-radius: 8px;
 background: #f8f9fa;
 margin: 0.2rem 0;
 }

 .nav-menu a:hover {
 background: #0056b3;
 color: #fff;
 }

 .hero {
 padding: 2rem 0;
 }

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

 .hero h2 {
 font-size: 1rem;
 line-height: 1.4;
 }

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

 .hero-buttons {
 flex-direction: column;
 gap: 1rem;
 align-items: center;
 }

 .btn {
 width: 100%;
 max-width: 280px;
 text-align: center;
 padding: 0.8rem 1.5rem;
 font-size: 0.95rem;
 }

 .hero-icons {
 display: none;
 }

 .about, .services, .team, .contact {
 padding: 2rem 0;
 }

 .about h2, .services h2, .team h2, .contact h2 {
 font-size: 1.8rem;
 margin-bottom: 1rem;
 }

 .about .subtitle, .services .subtitle, .contact .subtitle {
 font-size: 1rem;
 margin-bottom: 2rem;
 }

 .about-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 /* Old about-stats rules removed */

 /* Old about-stats rules removed */

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.2rem;
 }

 .service-icon-wrapper {
 width: 60px;
 height: 60px;
 }

 .service-icon {
 font-size: 1.5rem;
 }

 .service-card h3 {
 font-size: 1.2rem;
 }

 .service-card p {
 font-size: 0.9rem;
 }

 .service-features {
 padding: 1rem;
 }

 .service-features h4 {
 font-size: 1rem;
 }

 .service-features li {
 font-size: 0.85rem;
 }

 .team-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .team-card {
 padding: 1.5rem;
 }

 .team-icon {
 font-size: 2.5rem;
 }

 .team-card h3 {
 font-size: 1.3rem;
 }

 .team-card p {
 font-size: 0.9rem;
 }

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

 .contact-info, .inquiry-form {
 padding: 1.2rem;
 }

 .contact-header h4, .form-header h4 {
 font-size: 1.4rem;
 }

 .contact-card {
 flex-direction: column;
 text-align: center;
 padding: 1.2rem;
 }

 .contact-icon {
 width: 50px;
 height: 50px;
 margin-right: 0;
 margin-bottom: 1rem;
 }

 .contact-icon i {
 font-size: 1.2rem;
 }

 .contact-details h5 {
 font-size: 1rem;
 }

 .contact-details p {
 font-size: 0.85rem;
 }

 .contact-actions {
 flex-direction: column;
 align-items: center;
 gap: 0.8rem;
 }

 .map-btn, .call-btn {
 width: 100%;
 max-width: 280px;
 justify-content: center;
 padding: 0.8rem 1.5rem;
 font-size: 0.9rem;
 }

 .form-group {
 margin-bottom: 1rem;
 }

 .form-group label {
 font-size: 0.9rem;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
 padding: 0.8rem 1rem;
 font-size: 0.9rem;
 }

 .submit-btn {
 padding: 0.8rem;
 font-size: 0.9rem;
 }

 .footer {
 padding: 2rem 0 1rem 0;
 }

 .footer-content {
 grid-template-columns: 1fr;
 gap: 2rem;
 text-align: center;
 }

 .footer h3, .footer h4 {
 font-size: 1.2rem;
 }

 .footer p {
 font-size: 0.85rem;
 }

 .social-links {
 justify-content: center;
 gap: 1rem;
 }

 .social-links a {
 width: 40px;
 height: 40px;
 font-size: 1.2rem;
 }

 .footer-bottom {
 padding: 1rem 0;
 text-align: center;
 }

 .footer-bottom p {
 font-size: 0.8rem;
 }
}

/* Very Small Devices (up to 360px) */
@media (max-width: 360px) {
 .container {
 padding: 0 0.8rem;
 }

 .nav-container {
 padding: 0.5rem 0;
 }

 .nav-toggle {
 width: 22px;
 height: 18px;
 }

 .nav-toggle span {
 height: 1.8px;
 }

 .nav-menu {
 padding: 0.8rem;
 border-radius: 0 0 8px 8px;
 }

 .nav-menu a {
 padding: 0.7rem 0.8rem;
 font-size: 0.9rem;
 }

 .nav-menu a i {
 margin-right: 0.4rem;
 font-size: 0.9rem;
 }

 .nav-logo {
 padding: 3px 8px;
 min-width: auto;
 }

 .logo-text {
 font-size: 0.9rem;
 padding-left: 0;
 letter-spacing: 0.2px;
 white-space: nowrap;
 }

 .logo-text::after {
 left: 6.2em;
 width: 0.18rem;
 height: 0.18rem;
 }

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

 .hero h2 {
 font-size: 0.9rem;
 }

 .btn {
 padding: 0.7rem 1.2rem;
 font-size: 0.9rem;
 }

 .about h2, .services h2, .team h2, .contact h2 {
 font-size: 1.6rem;
 }

 .service-card, .team-card {
 padding: 1rem;
 }

 .contact-info, .inquiry-form {
 padding: 1rem;
 }

 .contact-card {
 padding: 1rem;
 }

 .contact-icon {
 width: 45px;
 height: 45px;
 }

 .contact-icon i {
 font-size: 1.1rem;
 }

 .map-btn, .call-btn {
 padding: 0.7rem 1.2rem;
 font-size: 0.85rem;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
 padding: 0.7rem 0.8rem;
 font-size: 0.85rem;
 }

 .submit-btn {
 padding: 0.7rem;
 font-size: 0.85rem;
 }
}

/* Landscape Mobile Devices */
@media (max-width: 767px) and (orientation: landscape) {
 .hero {
 padding: 1.5rem 0;
 }

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

 .hero h2 {
 font-size: 1.1rem;
 }

 .about, .services, .team, .contact {
 padding: 1.5rem 0;
 }

 .nav-menu {
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
 .service-icon,
 .contact-icon i,
 .team-icon {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
 .btn:hover,
 .service-card:hover,
 .contact-card:hover,
 .team-card:hover {
 transform: none;
 }

 .nav-menu a:hover {
 background: transparent;
 color: inherit;
 }

 .contact-details a:hover {
 color: #0056b3;
 text-decoration: none;
 }

 .service-card strong::after,
 .service-features li:hover {
 transform: none;
 }
}

/* Print Styles */
@media print {
 .navbar,
 .hero-buttons,
 .contact-actions,
 .social-links,
 .footer-bottom {
 display: none !important;
 }

 body {
 font-size: 12pt;
 line-height: 1.4;
 color: #000;
 background: #fff;
 }

 .container {
 max-width: 100%;
 padding: 0;
 }

 .hero {
 padding: 1rem 0;
 background: #fff;
 }

 .service-card,
 .team-card,
 .contact-info,
 .inquiry-form {
 box-shadow: none;
 border: 1px solid #ccc;
 break-inside: avoid;
 }

 /* Old about-stats rules removed */

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
 *,
 *::before,
 *::after {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 scroll-behavior: auto !important;
 }
}

@media (prefers-contrast: high) {
 .btn-primary {
 background: #000;
 color: #fff;
 border: 2px solid #000;
 }

 .btn-secondary {
 background: #fff;
 color: #000;
 border: 2px solid #000;
 }

 .service-card,
 .team-card,
 .contact-info,
 .inquiry-form {
 border: 2px solid #000;
 }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
 body {
 background: #1a1a1a;
 color: #fff;
 }

 .about,
 .services,
 .contact {
 background: #2d2d2d;
 }

 .service-card,
 .team-card,
 .contact-info,
 .inquiry-form {
 background: #333;
 border-color: #555;
 color: #fff;
 }

 .contact-info {
 background: #333;
 }

 .footer {
 background: #1a1a1a;
 color: #fff;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
 background: #444;
 color: #fff;
 border-color: #555;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
 background: #555;
 border-color: #0056b3;
 }
}

/* Enhanced Visual Design Styles */

/* Hero Section Enhancements */
.hero h1 i,
.hero h2 i,
.hero p i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.hero-features {
 display: flex;
 gap: 2rem;
 margin-top: 2rem;
 flex-wrap: wrap;
}

.feature-item {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 background: rgba(255, 255, 255, 0.1);
 padding: 0.8rem 1.2rem;
 border-radius: 25px;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
 transition: all 0.3s ease;
}

.feature-item:hover {
 background: rgba(255, 255, 255, 0.2);
 transform: translateY(-2px);
}

.feature-item i {
 color: #ff9800;
 font-size: 1.2rem;
}

.feature-item span {
 color: #fff;
 font-weight: 600;
 font-size: 0.9rem;
}

/* About Section Enhancements */
.about h2 i,
.about .subtitle i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.about-content h3 i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.about-content p i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.about-highlights {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
}

.highlight-item {
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 padding: 1.5rem;
 border-radius: 15px;
 border: 1px solid #e9ecef;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.highlight-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border-color: #0056b3;
}

.highlight-item i {
 color: #0056b3;
 font-size: 2.5rem;
 margin-bottom: 1rem;
 display: block;
}

.highlight-item h4 {
 color: #0056b3;
 font-size: 1.2rem;
 margin-bottom: 0.5rem;
 font-weight: 600;
}

.highlight-item p {
 color: #666;
 font-size: 0.9rem;
 margin: 0;
}

/* Enhanced Stats Cards */
.stat-card {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
 padding: 2rem 1.5rem;
 border-radius: 15px;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 8px 25px rgba(0,86,179,0.3);
 position: relative;
 overflow: hidden;
}

.stat-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
 opacity: 0;
 transition: opacity 0.3s ease;
}

.stat-card:hover::before {
 opacity: 1;
}

.stat-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 12px 35px rgba(0,86,179,0.4);
}

.stat-card i {
 font-size: 2.5rem;
 margin-bottom: 1rem;
 display: block;
 color: #ff9800;
}

.stat-card span {
 font-size: 2.5rem;
 font-weight: 700;
 display: block;
 margin-bottom: 0.5rem;
}

.stat-card p {
 font-size: 1rem;
 margin: 0;
 opacity: 0.9;
}

/* Team Section Enhancements */
.team h2 i,
.team .subtitle i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.team-icon-wrapper {
 width: 100px;
 height: 100px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 8px 25px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.team-card:hover .team-icon-wrapper {
 transform: scale(1.1);
 box-shadow: 0 12px 35px rgba(0,86,179,0.4);
}

.team-card h3 i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.team-role {
 color: #ff9800;
 font-weight: 600;
 margin-bottom: 0.5rem;
}

.team-role i {
 margin-right: 0.5rem;
}

.team-email {
 margin-bottom: 1.5rem;
}

.team-email i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.team-email a {
 color: #0056b3;
 text-decoration: none;
 transition: color 0.3s ease;
}

.team-email a:hover {
 color: #ff9800;
}

.team-skills {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 justify-content: center;
}

.skill-tag {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 color: #0056b3;
 padding: 0.5rem 1rem;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
}

.skill-tag:hover {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
 transform: translateY(-2px);
}

.skill-tag i {
 margin-right: 0.3rem;
}

.team-bio {
 color: #666;
 line-height: 1.6;
 margin: 1rem 0;
 font-size: 0.95rem;
}

/* Enhanced Service Cards */
.service-card h3 i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.service-features h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.service-features li i {
 color: #0056b3;
 margin-right: 0.5rem;
 width: 16px;
 text-align: center;
}

/* Enhanced Contact Section */
.contact h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.contact .subtitle i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.contact-header h4 i,
.form-header h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.contact-subtitle i,
.form-subtitle i {
 color: #0056b3;
 margin-right: 0.5rem;
}

/* Enhanced Footer */
.footer h3 i,
.footer h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.footer p i {
 color: #0056b3;
 margin-right: 0.5rem;
 width: 16px;
 text-align: center;
}

/* Enhanced Buttons */
.btn i {
 margin-right: 0.5rem;
}

.paypal-btn i {
 margin-right: 0.5rem;
}

.payment-note i {
 color: #28a745;
 margin-right: 0.5rem;
}

/* Enhanced Navigation */
.nav-menu a i {
 margin-right: 0.5rem;
}

/* Responsive Design for Visual Elements */
@media (max-width: 768px) {
 .hero-features {
 flex-direction: column;
 gap: 1rem;
 }

 .feature-item {
 justify-content: center;
 }

 .about-highlights {
 grid-template-columns: 1fr;
 gap: 1rem;
 }

 .highlight-item {
 padding: 1.2rem;
 }

 .highlight-item i {
 font-size: 2rem;
 }

 .stat-card {
 padding: 1.5rem 1rem;
 }

 .stat-card i {
 font-size: 2rem;
 }

 .stat-card span {
 font-size: 2rem;
 }

 .team-icon-wrapper {
 width: 80px;
 height: 80px;
 }

 .team-skills {
 gap: 0.3rem;
 }

 .skill-tag {
 padding: 0.4rem 0.8rem;
 font-size: 0.8rem;
 }
}

@media (max-width: 480px) {
 .hero-features {
 margin-top: 1.5rem;
 }

 .feature-item {
 padding: 0.6rem 1rem;
 }

 .feature-item i {
 font-size: 1rem;
 }

 .feature-item span {
 font-size: 0.8rem;
 }

 .about-highlights {
 margin-top: 1.5rem;
 }

 .highlight-item {
 padding: 1rem;
 }

 .highlight-item i {
 font-size: 1.8rem;
 margin-bottom: 0.8rem;
 }

 .highlight-item h4 {
 font-size: 1.1rem;
 }

 .highlight-item p {
 font-size: 0.85rem;
 }

 .stat-card {
 padding: 1.2rem 0.8rem;
 }

 .stat-card i {
 font-size: 1.8rem;
 margin-bottom: 0.8rem;
 }

 .stat-card span {
 font-size: 1.8rem;
 }

 .stat-card p {
 font-size: 0.9rem;
 }

 .team-icon-wrapper {
 width: 70px;
 height: 70px;
 }

 .team-skills {
 gap: 0.2rem;
 }

 .skill-tag {
 padding: 0.3rem 0.6rem;
 font-size: 0.75rem;
 }
}

/* Animation Enhancements */
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.feature-item,
.highlight-item,
.stat-card,
.team-card,
.service-card {
 animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }

/* Hover Effects for Visual Elements */
.feature-item:hover i,
.highlight-item:hover i,
.stat-card:hover i {
 transform: scale(1.1);
 transition: transform 0.3s ease;
}

.skill-tag:hover i {
 transform: rotate(5deg);
 transition: transform 0.3s ease;
}

/* Enhanced Focus States */
.feature-item:focus,
.highlight-item:focus,
.stat-card:focus,
.team-card:focus,
.service-card:focus {
 outline: 2px solid #0056b3;
 outline-offset: 2px;
}

/* Loading States */
.feature-item,
.highlight-item,
.stat-card,
.team-card,
.service-card {
 opacity: 1; /* Ensure content is always visible */
 animation: fadeInUp 0.6s ease-out forwards;
}

/* Print Styles for Visual Elements */
@media print {
 .feature-item,
 .highlight-item,
 .stat-card,
 .team-icon-wrapper,
 .skill-tag {
 box-shadow: none;
 border: 1px solid #ccc;
 }

 .feature-item i,
 .highlight-item i,
 .stat-card i,
 .team-icon-wrapper i {
 color: #000 !important;
 }

 .stat-card {
 background: #fff !important;
 color: #000 !important;
 }

 .skill-tag {
 background: #f8f9fa !important;
 color: #000 !important;
 }
}

/* Enhanced About Page Stats Cards */
.about-stats {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
 margin: 2rem 0;
}

.stat-card {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 border: 2px solid #e9ecef;
 border-radius: 20px;
 padding: 2rem 1.5rem;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 position: relative;
 overflow: hidden;
}

.stat-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.stat-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.stat-card:hover .stat-icon {
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 8px 25px rgba(0,86,179,0.4);
}

.stat-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 6px 20px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
 position: relative;
}

.stat-icon::after {
 content: '';
 position: absolute;
 top: -2px;
 left: -2px;
 right: -2px;
 bottom: -2px;
 background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
 border-radius: 50%;
 z-index: -1;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
 opacity: 1;
}

.stat-icon i {
 color: #fff;
 font-size: 2rem;
 transition: all 0.3s ease;
}

.stat-content {
 position: relative;
 z-index: 1;
}

.stat-number {
 display: block;
 font-size: 3rem;
 font-weight: 800;
 color: #0056b3;
 margin-bottom: 0.5rem;
 line-height: 1;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-label {
 font-size: 1.2rem;
 font-weight: 600;
 color: #333;
 margin-bottom: 0.5rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.stat-description {
 font-size: 0.9rem;
 color: #666;
 margin: 0;
 font-style: italic;
}

/* About Page Content Enhancements */
.about h2 i,
.about .subtitle i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.about-content h3 i {
 color: #0056b3;
 margin-right: 0.5rem;
}

.about-content p i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.about-content h4 i {
 color: #0056b3;
 margin-right: 0.5rem;
}

/* Payment Section Styling */
.payment-section {
 text-align: center;
 margin: 2rem 0;
 padding: 2rem;
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 border-radius: 20px;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.paypal-btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 2.5rem;
 background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%);
 color: #fff;
 text-decoration: none;
 border-radius: 50px;
 font-weight: 600;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 box-shadow: 0 6px 20px rgba(0,112,186,0.3);
}

.paypal-btn:hover {
 background: linear-gradient(135deg, #005ea6 0%, #004085 100%);
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(0,112,186,0.4);
 color: #fff;
}

.payment-note {
 margin-top: 1rem;
 color: #666;
 font-size: 0.95rem;
 font-style: italic;
}

.payment-note i {
 color: #28a745;
 margin-right: 0.5rem;
}

/* Responsive Design for Stats Cards */
@media (max-width: 1024px) {
 .about-stats {
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
 }

 .stat-card {
 padding: 1.5rem 1rem;
 }

 .stat-icon {
 width: 70px;
 height: 70px;
 }

 .stat-icon i {
 font-size: 1.8rem;
 }

 .stat-number {
 font-size: 2.5rem;
 }

 .stat-label {
 font-size: 1.1rem;
 }
}

@media (max-width: 768px) {
 .about-stats {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .stat-card {
 padding: 1.5rem;
 }

 .stat-icon {
 width: 60px;
 height: 60px;
 margin-bottom: 1rem;
 }

 .stat-icon i {
 font-size: 1.5rem;
 }

 .stat-number {
 font-size: 2.2rem;
 }

 .stat-label {
 font-size: 1rem;
 }

 .stat-description {
 font-size: 0.85rem;
 }

 .payment-section {
 padding: 1.5rem;
 margin-top: 2rem;
 }

 .paypal-btn {
 padding: 0.8rem 2rem;
 font-size: 1rem;
 }
}

@media (max-width: 480px) {
 .stat-card {
 padding: 1.2rem;
 }

 .stat-icon {
 width: 50px;
 height: 50px;
 margin-bottom: 0.8rem;
 }

 .stat-icon i {
 font-size: 1.3rem;
 }

 .stat-number {
 font-size: 1.8rem;
 }

 .stat-label {
 font-size: 0.9rem;
 }

 .stat-description {
 font-size: 0.8rem;
 }

 .payment-section {
 padding: 1rem;
 }

 .paypal-btn {
 padding: 0.7rem 1.5rem;
 font-size: 0.9rem;
 }
}

/* Animation for Stats Cards */
@keyframes statCardFadeIn {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.stat-card {
 animation: statCardFadeIn 0.6s ease-out;
 opacity: 1; /* Fallback to ensure content is always visible */
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Hover Effects */
.stat-card:hover .stat-number {
 transform: scale(1.05);
 transition: transform 0.3s ease;
}

.stat-card:hover .stat-label {
 color: #0056b3;
 transition: color 0.3s ease;
}

/* Focus States for Accessibility */
.stat-card:focus {
 outline: 2px solid #0056b3;
 outline-offset: 2px;
}

/* Print Styles */
@media print {
 .stat-card {
 box-shadow: none;
 border: 1px solid #ccc;
 break-inside: avoid;
 }

 .stat-icon {
 background: #ccc !important;
 }

 .stat-icon i {
 color: #000 !important;
 }

 .stat-number {
 color: #000 !important;
 -webkit-text-fill-color: #000 !important;
 }

 .payment-section {
 box-shadow: none;
 border: 1px solid #ccc;
 }
}

/* Enhanced About Page Styles */

/* About Header */
.about-header {
 text-align: center;
 margin-bottom: 3rem;
 padding-bottom: 2rem;
 border-bottom: 3px solid #0056b3;
}

.about-header h2 {
 color: #0056b3;
 font-size: 2.8rem;
 margin-bottom: 1rem;
 font-weight: 700;
}

.about-header h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.about-header .subtitle {
 color: #666;
 font-size: 1.3rem;
 margin: 0;
 font-weight: 400;
}

.about-header .subtitle i {
 color: #0056b3;
 margin-right: 0.5rem;
}

/* About Hero Section */
.about-hero {
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 padding: 2.5rem;
 border-radius: 20px;
 margin-bottom: 2rem;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.about-hero-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 align-items: center;
 width: 100%;
}

.company-intro h3 {
 color: #0056b3;
 font-size: 1.8rem;
 margin-bottom: 1.5rem;
 font-weight: 600;
 display: block;
}

.company-intro h3 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.company-description {
 color: #444;
 font-size: 1.1rem;
 line-height: 1.7;
 margin-bottom: 0;
 display: block;
}

.company-description i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.company-highlights {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.highlight-card {
 background: #fff;
 padding: 1.2rem;
 border-radius: 15px;
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.highlight-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border-color: #0056b3;
}

.highlight-card i {
 color: #0056b3;
 font-size: 2rem;
 margin-bottom: 1rem;
 display: block;
}

.highlight-card h4 {
 color: #0056b3;
 font-size: 1.2rem;
 margin-bottom: 0.5rem;
 font-weight: 600;
}

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

/* About Content Grid */
.about-content-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 margin-bottom: 2rem;
}

.company-details-section {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.details-card {
 background: #fff;
 padding: 1.5rem;
 border-radius: 15px;
 border: 1px solid #e9ecef;
 box-shadow: 0 4px 15px rgba(0,0,0,0.05);
 transition: all 0.3s ease;
}

.details-card:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border-color: #0056b3;
}

.details-card h4 {
 color: #0056b3;
 font-size: 1.3rem;
 margin-bottom: 1.5rem;
 font-weight: 600;
 border-bottom: 2px solid #0056b3;
 padding-bottom: 0.5rem;
}

.details-card h4 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.company-details {
 list-style: none;
 padding: 0;
 margin: 0;
}

.company-details li {
 color: #444;
 font-size: 1rem;
 line-height: 1.6;
 margin-bottom: 1rem;
 padding-left: 0;
 position: relative;
}

.company-details li i {
 color: #0056b3;
 margin-right: 0.5rem;
 width: 16px;
 text-align: center;
}

.company-details li strong {
 color: #0056b3;
 font-weight: 600;
}

/* Mission Vision Section */
.mission-vision-section {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.mission-card,
.vision-card {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 padding: 2rem;
 border-radius: 20px;
 border: 2px solid #e9ecef;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 position: relative;
 overflow: hidden;
}

.mission-card::before,
.vision-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.mission-card:hover,
.vision-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.mission-icon,
.vision-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 8px 25px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
 transform: scale(1.1);
 box-shadow: 0 12px 35px rgba(0,86,179,0.4);
}

.mission-icon i,
.vision-icon i {
 color: #fff;
 font-size: 2rem;
}

.mission-card h4,
.vision-card h4 {
 color: #0056b3;
 font-size: 1.5rem;
 margin-bottom: 1rem;
 font-weight: 600;
}

.mission-card p,
.vision-card p {
 color: #444;
 font-size: 1rem;
 line-height: 1.6;
 margin: 0;
}

/* Services Preview Section */
.services-preview {
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 padding: 2.5rem;
 border-radius: 20px;
 margin-bottom: 2rem;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.services-preview h3 {
 color: #0056b3;
 font-size: 2rem;
 text-align: center;
 margin-bottom: 2rem;
 font-weight: 600;
}

.services-preview h3 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.services-preview .services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
}

.service-preview-card {
 background: #fff;
 padding: 1.5rem;
 border-radius: 15px;
 border: 1px solid #e9ecef;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-preview-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border-color: #0056b3;
}

.service-preview-card i {
 color: #0056b3;
 font-size: 2.5rem;
 margin-bottom: 1rem;
 display: block;
}

.service-preview-card h4 {
 color: #0056b3;
 font-size: 1.2rem;
 margin-bottom: 0.8rem;
 font-weight: 600;
}

.service-preview-card p {
 color: #666;
 font-size: 0.95rem;
 margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
 .about-hero-content {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

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

 .services-preview .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 768px) {
 .about-header h2 {
 font-size: 2.2rem;
 }

 .about-header .subtitle {
 font-size: 1.1rem;
 }

 .about-hero {
 padding: 2rem;
 }

 .company-intro h3 {
 font-size: 1.5rem;
 }

 .company-description {
 font-size: 1rem;
 }

 .highlight-card {
 padding: 1.2rem;
 }

 .highlight-card i {
 font-size: 1.8rem;
 }

 .details-card {
 padding: 1.5rem;
 }

 .mission-card,
 .vision-card {
 padding: 2rem;
 }

 .mission-icon,
 .vision-icon {
 width: 70px;
 height: 70px;
 }

 .mission-icon i,
 .vision-icon i {
 font-size: 1.8rem;
 }

 .services-preview {
 padding: 2rem;
 }

 .services-preview h3 {
 font-size: 1.6rem;
 }

 .services-preview .services-grid {
 grid-template-columns: 1fr;
 }

 .service-preview-card {
 padding: 1.5rem;
 }
}

@media (max-width: 480px) {
 .about-header h2 {
 font-size: 1.8rem;
 }

 .about-header .subtitle {
 font-size: 1rem;
 }

 .about-hero {
 padding: 1.5rem;
 }

 .company-intro h3 {
 font-size: 1.3rem;
 }

 .company-description {
 font-size: 0.95rem;
 }

 .highlight-card {
 padding: 1rem;
 }

 .highlight-card i {
 font-size: 1.5rem;
 }

 .highlight-card h4 {
 font-size: 1.1rem;
 }

 .details-card {
 padding: 1.2rem;
 }

 .details-card h4 {
 font-size: 1.1rem;
 }

 .company-details li {
 font-size: 0.9rem;
 }

 .mission-card,
 .vision-card {
 padding: 1.5rem;
 }

 .mission-icon,
 .vision-icon {
 width: 60px;
 height: 60px;
 }

 .mission-icon i,
 .vision-icon i {
 font-size: 1.5rem;
 }

 .mission-card h4,
 .vision-card h4 {
 font-size: 1.3rem;
 }

 .mission-card p,
 .vision-card p {
 font-size: 0.9rem;
 }

 .services-preview {
 padding: 1.5rem;
 }

 .services-preview h3 {
 font-size: 1.4rem;
 }

 .service-preview-card {
 padding: 1.2rem;
 }

 .service-preview-card i {
 font-size: 2rem;
 }

 .service-preview-card h4 {
 font-size: 1.1rem;
 }

 .service-preview-card p {
 font-size: 0.9rem;
 }
}

/* Animation Enhancements */
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

.about-hero,
.details-card,
.mission-card,
.vision-card,
.service-preview-card {
 animation: fadeInUp 0.6s ease-out;
 opacity: 1; /* Fallback to ensure content is always visible */
}

.about-hero { animation-delay: 0.1s; }
.details-card:nth-child(1) { animation-delay: 0.2s; }
.details-card:nth-child(2) { animation-delay: 0.3s; }
.mission-card { animation-delay: 0.4s; }
.vision-card { animation-delay: 0.5s; }
.service-preview-card:nth-child(1) { animation-delay: 0.6s; }
.service-preview-card:nth-child(2) { animation-delay: 0.7s; }
.service-preview-card:nth-child(3) { animation-delay: 0.8s; }
.service-preview-card:nth-child(4) { animation-delay: 0.9s; }

/* Enhanced About Page Styles */

/* About Hero Section */
.about-hero-section {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
 padding: 4rem 2rem;
 border-radius: 20px;
 margin-bottom: 3rem;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.about-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
 opacity: 0.3;
}

.hero-content {
 position: relative;
 z-index: 2;
 margin-bottom: 2rem;
}

.hero-content h1 {
 font-size: 3rem;
 font-weight: 700;
 margin-bottom: 1rem;
 text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-header {
 text-align: center;
 margin-bottom: 2rem;
}

.hero-header h1 {
 margin-bottom: 0.5rem;
}

.hero-header .hero-subtitle {
 font-size: 1.2rem;
 color: #666;
 margin-bottom: 0;
}

.description-content {
 display: flex;
 align-items: flex-start;
 gap: 1.5rem;
 background: rgba(255, 255, 255, 0.95);
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
}

.description-icon {
 flex-shrink: 0;
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0056b3, #007bff);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.5rem;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.description-text p {
 font-size: 1.1rem;
 line-height: 1.7;
 color: #333;
 margin: 0;
 text-align: left;
}

.description-text strong {
 color: #0056b3;
 font-weight: 600;
}

.hero-content h1 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.hero-subtitle {
 font-size: 1.3rem;
 margin-bottom: 1.5rem;
 opacity: 0.9;
}

.hero-subtitle i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.hero-description {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1rem;
 line-height: 1.7;
 opacity: 0.95;
}

.hero-description i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.hero-stats {
 display: flex;
 justify-content: center;
 gap: 3rem;
 margin-top: 2rem;
 position: relative;
 z-index: 2;
}

.quick-stat {
 text-align: center;
 padding: 1rem;
 background: rgba(255,255,255,0.1);
 border-radius: 15px;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255,255,255,0.2);
 transition: all 0.3s ease;
}

.quick-stat:hover {
 transform: translateY(-5px);
 background: rgba(255,255,255,0.2);
}

.quick-stat .stat-number {
 display: block;
 font-size: 2.5rem;
 font-weight: 800;
 color: #ff9800;
 margin-bottom: 0.5rem;
}

.quick-stat .stat-label {
 font-size: 0.9rem;
 opacity: 0.9;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

/* Company Overview */
.company-overview {
 margin-bottom: 4rem;
}

.overview-header {
 text-align: center;
 margin-bottom: 3rem;
}

.overview-header h2 {
 color: #0056b3;
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.overview-header h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.overview-header p {
 color: #666;
 font-size: 1.2rem;
 margin: 0;
}

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

.overview-card {
 background: #fff;
 padding: 2rem;
 border-radius: 15px;
 text-align: center;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.overview-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.overview-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 6px 20px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.overview-card:hover .card-icon {
 transform: scale(1.1);
 box-shadow: 0 8px 25px rgba(0,86,179,0.4);
}

.card-icon i {
 color: #fff;
 font-size: 2rem;
}

.overview-card h3 {
 color: #0056b3;
 font-size: 1.3rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.overview-card p {
 color: #666;
 font-size: 1rem;
 margin: 0;
 line-height: 1.5;
}

/* Mission & Vision Section */
.mission-vision-section {
 margin-bottom: 4rem;
}

.section-header {
 text-align: center;
 margin-bottom: 1.5rem;
}

.section-header h2 {
 color: #0056b3;
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
}

.section-header h2 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.section-header p {
 color: #666;
 font-size: 1.2rem;
 margin: 0;
}

.mission-vision-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 gap: 2rem;
}

.mission-card,
.vision-card {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 padding: 2.5rem;
 border-radius: 20px;
 border: 2px solid #e9ecef;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.mission-card::before,
.vision-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.mission-card:hover,
.vision-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.card-header {
 display: flex;
 align-items: center;
 margin-bottom: 1.5rem;
}

.header-icon {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-right: 1rem;
 box-shadow: 0 4px 15px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.mission-card:hover .header-icon,
.vision-card:hover .header-icon {
 transform: scale(1.1);
 box-shadow: 0 6px 20px rgba(0,86,179,0.4);
}

.header-icon i {
 color: #fff;
 font-size: 1.5rem;
}

.card-header h3 {
 color: #0056b3;
 font-size: 1.5rem;
 font-weight: 600;
 margin: 0;
}

.mission-card p,
.vision-card p {
 color: #444;
 font-size: 1.1rem;
 line-height: 1.7;
 margin: 0;
}

/* Stats Section */
.stats-section {
 margin-bottom: 4rem;
}

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

.stat-card {
 background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
 border: 2px solid #e9ecef;
 border-radius: 20px;
 padding: 2rem 1.5rem;
 text-align: center;
 transition: all 0.3s ease;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 position: relative;
 overflow: hidden;
}

.stat-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.stat-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.stat-card:hover .stat-icon {
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 8px 25px rgba(0,86,179,0.4);
}

.stat-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 6px 20px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
 position: relative;
}

.stat-icon::after {
 content: '';
 position: absolute;
 top: -2px;
 left: -2px;
 right: -2px;
 bottom: -2px;
 background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
 border-radius: 50%;
 z-index: -1;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::after {
 opacity: 1;
}

.stat-icon i {
 color: #fff;
 font-size: 2rem;
 transition: all 0.3s ease;
}

.stat-content {
 position: relative;
 z-index: 1;
}

.stat-number {
 display: block;
 font-size: 3rem;
 font-weight: 800;
 color: #0056b3;
 margin-bottom: 0.5rem;
 line-height: 1;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-label {
 font-size: 1.2rem;
 font-weight: 600;
 color: #333;
 margin-bottom: 0.5rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.stat-description {
 font-size: 0.9rem;
 color: #666;
 margin: 0;
 font-style: italic;
}

/* Services Overview */
.services-overview {
 margin-bottom: 4rem;
}

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

.service-card {
 background: #fff;
 padding: 2rem;
 border-radius: 15px;
 text-align: center;
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.service-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 border-color: #0056b3;
}

.service-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem auto;
 box-shadow: 0 6px 20px rgba(0,86,179,0.3);
 transition: all 0.3s ease;
}

.service-card:hover .service-icon {
 transform: scale(1.1);
 box-shadow: 0 8px 25px rgba(0,86,179,0.4);
}

.service-icon i {
 color: #fff;
 font-size: 2rem;
}

.service-card h3 {
 color: #0056b3;
 font-size: 1.3rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.service-card p {
 color: #666;
 font-size: 1rem;
 line-height: 1.6;
 margin: 0;
}

/* Payment Section */
.payment-section {
 text-align: center;
 margin: 3rem 0;
 padding: 3rem;
 background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
}

.payment-content h3 {
 color: #0056b3;
 font-size: 2rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.payment-content h3 i {
 color: #ff9800;
 margin-right: 0.5rem;
}

.payment-content p {
 color: #666;
 font-size: 1.1rem;
 margin-bottom: 2rem;
}

.paypal-btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 2.5rem;
 background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%);
 color: #fff;
 text-decoration: none;
 border-radius: 50px;
 font-weight: 600;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 box-shadow: 0 6px 20px rgba(0,112,186,0.3);
}

.paypal-btn:hover {
 background: linear-gradient(135deg, #005ea6 0%, #004085 100%);
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(0,112,186,0.4);
 color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
 .hero-stats {
 gap: 2rem;
 }

 .overview-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .mission-vision-grid {
 grid-template-columns: 1fr;
 }

 .stats-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .services-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 768px) {
 .about-hero-section {
 padding: 3rem 1.5rem;
 }

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

 .hero-subtitle {
 font-size: 1.1rem;
 }

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

 .hero-stats {
 flex-direction: column;
 gap: 1rem;
 }

 .quick-stat {
 padding: 0.8rem;
 }

 .quick-stat .stat-number {
 font-size: 2rem;
 }

 .overview-header h2,
 .section-header h2 {
 font-size: 2rem;
 }

 .overview-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .overview-card {
 padding: 1.5rem;
 }

 .card-icon {
 width: 70px;
 height: 70px;
 }

 .card-icon i {
 font-size: 1.8rem;
 }

 .mission-card,
 .vision-card {
 padding: 2rem;
 }

 .header-icon {
 width: 50px;
 height: 50px;
 }

 .header-icon i {
 font-size: 1.3rem;
 }

 .stats-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .stat-card {
 padding: 1.5rem 1rem;
 }

 .stat-icon {
 width: 70px;
 height: 70px;
 }

 .stat-icon i {
 font-size: 1.8rem;
 }

 .stat-number {
 font-size: 2.5rem;
 }

 .services-grid {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .service-card {
 padding: 1.5rem;
 }

 .service-icon {
 width: 70px;
 height: 70px;
 }

 .service-icon i {
 font-size: 1.8rem;
 }

 .payment-section {
 padding: 2rem;
 }

 .payment-content h3 {
 font-size: 1.6rem;
 }
}

@media (max-width: 480px) {
 .about-hero-section {
 padding: 2rem 1rem;
 }

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

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

 .hero-description {
 font-size: 0.95rem;
 }

 .overview-header h2,
 .section-header h2 {
 font-size: 1.6rem;
 }

 .overview-card,
 .mission-card,
 .vision-card,
 .stat-card,
 .service-card {
 padding: 1.2rem;
 }

 .card-icon,
 .stat-icon,
 .service-icon {
 width: 60px;
 height: 60px;
 }

 .card-icon i,
 .stat-icon i,
 .service-icon i {
 font-size: 1.5rem;
 }

 .stat-number {
 font-size: 2rem;
 }

 .payment-section {
 padding: 1.5rem;
 }

 .payment-content h3 {
 font-size: 1.4rem;
 }

 .paypal-btn {
 padding: 0.8rem 2rem;
 font-size: 1rem;
 }
}

/* Enhanced Home Page Styles */

/* Enhanced Hero Section */
.hero {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #0056b3 100%);
 color: #fff;
 padding: 6rem 2rem;
 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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
 opacity: 0.3;
}

.hero-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
 position: relative;
 z-index: 2;
}

.hero-text {
 max-width: 600px;
}

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: rgba(255, 255, 255, 0.2);
 color: #fff;
 padding: 0.5rem 1rem;
 border-radius: 25px;
 font-size: 0.9rem;
 font-weight: 500;
 margin-bottom: 1.5rem;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-main {
 display: block;
 font-size: 3.5rem;
 font-weight: 800;
 line-height: 1.1;
 margin-bottom: 0.5rem;
 background: linear-gradient(45deg, #fff, #e3f2fd);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.hero-title-sub {
 display: block;
 font-size: 2.5rem;
 font-weight: 600;
 color: #e3f2fd;
 margin-bottom: 1.5rem;
}

.hero-description {
 font-size: 1.1rem;
 line-height: 1.6;
 margin-bottom: 2rem;
 color: #e3f2fd;
}

.hero-buttons {
 display: flex;
 gap: 1rem;
 margin-bottom: 2rem;
 flex-wrap: wrap;
}

.hero-btn-primary {
 background: linear-gradient(45deg, #ff6b35, #f7931e);
 border: none;
 padding: 1rem 2rem;
 font-size: 1.1rem;
 font-weight: 600;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-btn-secondary {
 background: rgba(255, 255, 255, 0.2);
 border: 2px solid rgba(255, 255, 255, 0.3);
 color: #fff;
 padding: 1rem 2rem;
 font-size: 1.1rem;
 font-weight: 600;
 transition: all 0.3s ease;
 backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
 background: rgba(255, 255, 255, 0.3);
 transform: translateY(-2px);
}

.hero-visual {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
}

.hero-icons {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 2rem;
 margin-bottom: 2rem;
}

.hero-icons i {
 font-size: 3rem;
 color: rgba(255, 255, 255, 0.8);
 animation: float 3s ease-in-out infinite;
}

.hero-icons i:nth-child(2) {
 animation-delay: 0.5s;
}

.hero-icons i:nth-child(3) {
 animation-delay: 1s;
}

.hero-icons i:nth-child(4) {
 animation-delay: 1.5s;
}

.hero-stats-preview {
 display: flex;
 gap: 2rem;
 background: rgba(255, 255, 255, 0.1);
 padding: 1.5rem;
 border-radius: 15px;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-preview {
 text-align: center;
 color: #fff;
}

.stat-preview .stat-number {
 display: block;
 font-size: 2rem;
 font-weight: 800;
 color: #ff6b35;
}

.stat-preview .stat-label {
 font-size: 0.9rem;
 color: #e3f2fd;
}

/* Enhanced About Section */
.about {
 padding: 2rem 2rem;
 background: #f8f9fa;
}

.section-header {
 text-align: center;
 margin-bottom: 1.5rem;
}

.section-header h2 {
 font-size: 2.5rem;
 font-weight: 700;
 color: #0056b3;
 margin-bottom: 1rem;
}

.section-subtitle {
 font-size: 1.1rem;
 color: #666;
 max-width: 600px;
 margin: 0 auto;
 text-align: center;
}

.about-content {
 max-width: 1200px;
 margin: 0 auto;
}

.about-intro {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: start;
}

.about-description-content {
 display: flex;
 align-items: flex-start;
 gap: 1.5rem;
 background: rgba(255, 255, 255, 0.95);
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
 margin-bottom: 2rem;
}

.about-description-icon {
 flex-shrink: 0;
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0056b3, #007bff);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.5rem;
 box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.about-description-text h3 {
 color: #0056b3;
 font-size: 1.8rem;
 font-weight: 600;
 margin-bottom: 1rem;
}

.about-description-text p {
 font-size: 1.1rem;
 line-height: 1.7;
 color: #333;
 margin: 0;
}

.about-description-text strong {
 color: #0056b3;
 font-weight: 600;
}

.intro-text h3 {
 font-size: 1.8rem;
 font-weight: 600;
 color: #0056b3;
 margin-bottom: 1rem;
}

.intro-text p {
 font-size: 1.1rem;
 line-height: 1.6;
 color: #555;
 margin-bottom: 2rem;
}

.company-highlights {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.highlight-item {
 display: flex;
 align-items: center;
 gap: 0.8rem;
 color: #0056b3;
 font-weight: 500;
}

.highlight-item i {
 color: #28a745;
 font-size: 1.1rem;
}

.company-details {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
}

.detail-card {
 background: #fff;
 padding: 1.5rem;
 border-radius: 12px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 display: flex;
 align-items: center;
 gap: 1rem;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(45deg, #0056b3, #007bff);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 1.2rem;
}

.detail-content h4 {
 font-size: 1rem;
 font-weight: 600;
 color: #0056b3;
 margin-bottom: 0.3rem;
}

.detail-content p {
 color: #666;
 font-size: 0.9rem;
}

/* Enhanced Services Section */
.services {
 padding: 5rem 2rem;
 background: #fff;
}

.services-cta {
 background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
 color: #fff;
 padding: 3rem 2rem;
 border-radius: 20px;
 text-align: center;
 margin-top: 3rem;
}

.cta-content h3 {
 font-size: 2rem;
 font-weight: 700;
 margin-bottom: 1rem;
}

.cta-content p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 opacity: 0.9;
}

/* Enhanced Team Section */
.team {
 padding: 5rem 2rem;
 background: #f8f9fa;
}

/* Enhanced Contact Section */
.contact {
 padding: 5rem 2rem;
 background: #fff;
}

/* Enhanced Footer */
.footer {
 background: #1a1a1a;
 color: #fff;
 padding: 3rem 2rem 1rem;
}

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

.footer-section h3,
.footer-section h4 {
 color: #fff;
 margin-bottom: 1rem;
 font-weight: 600;
}

.footer-section h3 {
 font-size: 1.5rem;
}

.footer-section h4 {
 font-size: 1.2rem;
}

.footer-section p {
 color: #ccc;
 line-height: 1.6;
 margin-bottom: 0.5rem;
}

.footer-social {
 display: flex;
 gap: 1rem;
 margin-top: 1rem;
}

.footer-social a {
 width: 40px;
 height: 40px;
 background: #0056b3;
 color: #fff;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 text-decoration: none;
 transition: all 0.3s ease;
}

.footer-social a:hover {
 background: #007bff;
 transform: translateY(-2px);
}

.footer-payment {
 margin-top: 1rem;
}

.btn-paypal {
 background: #0070ba;
 color: #fff;
 padding: 0.8rem 1.5rem;
 border-radius: 8px;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 font-weight: 600;
 transition: all 0.3s ease;
}

.btn-paypal:hover {
 background: #005ea6;
 transform: translateY(-2px);
}

.legal-links {
 display: flex;
 flex-direction: column;
 gap: 0.8rem;
}

.legal-link {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.8rem 1.2rem;
 background: #0056b3;
 color: #fff;
 text-decoration: none;
 border-radius: 8px;
 font-size: 0.9rem;
 font-weight: 500;
 transition: all 0.3s ease;
}

.legal-link:nth-child(2) {
 background: #28a745;
}

.legal-link:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
 border-top: 1px solid #333;
 padding-top: 1rem;
 text-align: center;
 color: #999;
 font-size: 0.9rem;
}

/* Animations */
@keyframes float {
 0%, 100% {
 transform: translateY(0);
 }
 50% {
 transform: translateY(-10px);
 }
}

/* Responsive Design */
@media (max-width: 768px) {
 .hero-content {
 grid-template-columns: 1fr;
 text-align: center;
 }

 .hero-title-main {
 font-size: 2.5rem;
 }

 .hero-title-sub {
 font-size: 1.8rem;
 }

 .hero-buttons {
 justify-content: center;
 }

 .hero-stats-preview {
 flex-direction: column;
 gap: 1rem;
 }

 .about-intro {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .about-description-content {
 flex-direction: column;
 text-align: center;
 gap: 1rem;
 padding: 1.5rem;
 }

 .about-description-icon {
 width: 50px;
 height: 50px;
 font-size: 1.2rem;
 margin: 0 auto;
 }

 .about-description-text p {
 text-align: center;
 font-size: 1rem;
 }

 .company-details {
 grid-template-columns: 1fr;
 }

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

 .footer-social {
 justify-content: center;
 }
}

@media (max-width: 480px) {
 .hero {
 padding: 4rem 1rem;
 }

 .hero-title-main {
 font-size: 2rem;
 }

 .hero-title-sub {
 font-size: 1.5rem;
 }

 .hero-buttons {
 flex-direction: column;
 align-items: center;
 }

 .section-header h2 {
 font-size: 2rem;
 }

 .about,
 .services,
 .team,
 .contact {
 padding: 3rem 1rem;
 }

 .description-content {
 flex-direction: column;
 text-align: center;
 gap: 0.8rem;
 padding: 1.2rem;
 }

 .description-icon {
 width: 45px;
 height: 45px;
 font-size: 1.1rem;
 margin: 0 auto;
 }

 .description-text p {
 text-align: center;
 font-size: 0.95rem;
 }

 .about-description-content {
 flex-direction: column;
 text-align: center;
 gap: 0.8rem;
 padding: 1.2rem;
 }

 .about-description-icon {
 width: 45px;
 height: 45px;
 font-size: 1.1rem;
 margin: 0 auto;
 }

 .about-description-text p {
 text-align: center;
 font-size: 0.95rem;
 }
}
