 /* ========== CSS VARIABLES ========== */
 :root {
     --primary-color: #0072ff;
     --secondary-color: #00c6ff;
     --dark-color: #1e293b;
     --light-color: #f8f9fa;
     --text-color: #333;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --skeleton-bg: #ffffff;
     --skeleton-shine: #d8d8d8;
     --card-bg: #ffffff;
     --accent-color: #3a86ff;
 }

 /* ========== RESET & BASE STYLES ========== */
 * {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
 }

 body {
     width: 100%;
     font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     user-select: none;
     scroll-behavior: smooth;
     background-color: var(--light-color);
     color: var(--text-color);
     line-height: 1.6;
     overflow-x: hidden;
     -webkit-user-select: none;
     /* Safari/Chrome */
     -moz-user-select: none;
     /* Firefox */
     -ms-user-select: none;
     /* Internet Explorer */
     user-select: none;
     -webkit-user-drag: none;
     -moz-user-drag: none;
     -ms-user-drag: none;
     user-drag: none;
 }

 /* ========== SKELETON LOADING ANIMATIONS ========== */
 .skeleton {
     background: var(--skeleton-bg);
     background: linear-gradient(90deg, var(--skeleton-bg) 25%, var(--skeleton-shine) 50%, var(--skeleton-bg) 75%);
     background-size: 200% 100%;
     animation: loading 1s infinite;
     border-radius: 4px;
 }

 @keyframes loading {
     0% {
         background-position: 200% 0;
     }

     100% {
         background-position: -200% 0;
     }
 }

 .skeleton-slider {
     width: 100%;
     height: 100vh;
     position: relative;
     overflow: hidden;
 }

 .skeleton-slider-img {
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
 }

 .skeleton-slider-content {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 1.5rem;
     text-align: center;
     padding: 0 2rem;
     background: rgba(0, 0, 0, 0.4);
 }

 .skeleton-slider-title {
     height: 3.5rem;
     width: 60%;
     border-radius: 8px;
 }

 .skeleton-slider-text {
     height: 1.3rem;
     width: 70%;
     border-radius: 4px;
 }

 .skeleton-slider-button {
     height: 4rem;
     width: 14rem;
     border-radius: 0.5rem;
 }

 .skeleton-section {
     padding: 5rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .skeleton-section-title {
     height: 2.5rem;
     width: 40%;
     margin: 0 auto 3rem;
     border-radius: 4px;
 }

 .skeleton-section-divider {
     height: 4px;
     width: 80px;
     margin: 0 auto 3rem;
     border-radius: 2px;
 }

 .skeleton-cards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .skeleton-card {
     height: 300px;
     border-radius: 1rem;
     margin-bottom: 2rem;
 }

 .skeleton-banner {
     width: 100%;
     height: 400px;
     border-radius: 15px;
     margin: 4rem 0;
 }

 .skeleton-project-item {
     height: 300px;
     border-radius: 12px;
     margin-bottom: 2rem;
 }

 .skeleton-counter-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     margin-top: 50px;
 }

 .skeleton-counter-card {
     height: 300px;
     border-radius: 20px;
     padding: 50px 35px;
 }

 .skeleton-team-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 800px;
     margin: 0 auto 50px;
 }

 .skeleton-team-card {
     height: 350px;
     border-radius: 20px;
     padding: 30px;
 }

 .skeleton-blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .skeleton-blog-card {
     height: 450px;
     border-radius: 15px;
 }

 /* Hide actual content initially */
 .actual-content {
     display: none;
 }

 /* Show actual content when loaded */
 body.loaded .actual-content {
     display: block;
 }

 body.loaded .skeleton-content {
     display: none;
 }

 /* ========== HEADER STYLES ========== */
 header {
     width: 100%;
     height: 5rem;
     background-color: white;
     box-shadow: var(--shadow);
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding: 0 2rem;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .uper-logo {
     height: 4.5rem;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .logo {
     height: 3rem;
     cursor: pointer;
     font-weight: 700;
     font-size: 1.8rem;
     color: var(--primary-color);
 }

 .uper-nav {
     display: flex;
     align-items: center;
 }

 nav ul {
     list-style: none;
     display: flex;
     flex-direction: row;
     gap: 1.5rem;
 }

 ul li a {
     position: relative;
     text-decoration: none;
     color: var(--text-color);
     font-weight: 600;
     letter-spacing: 1px;
     padding-bottom: 0.6rem;
     transition: color 0.3s ease;
 }

 ul li a::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0.1rem;
     background: rgba(0, 0, 0, 0.1);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.3s ease;
 }

 ul li a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0.1rem;
     background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
     border-radius: 0.2rem;
 }

 ul li a:hover {
     color: var(--secondary-color);
 }

 ul li a:hover::before {
     transform: scaleX(1);
     transform-origin: left;
 }

 ul li a:hover::after {
     transform: scaleX(1);
     transform-origin: right;
 }

 .act {
     color: var(--secondary-color);
 }

 .share-btn {
     width: 3rem;
     height: 3rem;
     border-radius: 50%;
     background: #000;
     color: #fff;
     border: none;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 200;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .share-btn:hover {
     background: #fff;
     color: #000;
     transform: scale(1.1);
     border: 1px solid #000;
 }

 .share-dropdown {
     position: absolute;
     top: 5rem;
     right: 2rem;
     background: rgba(255, 255, 255, 0.95);
     padding: 0.9rem 1.2rem;
     box-shadow: var(--shadow);
     display: flex;
     border-radius: 0.9rem;
     gap: 1.3rem;
     transform-origin: top;
     transform: scaleY(0);
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 150;
     backdrop-filter: blur(0.9rem);
 }

 .share-dropdown.show {
     transform: scaleY(1);
     opacity: 1;
 }

 .share-dropdown a {
     color: #fff;
     font-size: 1.1rem;
     background: #111;
     padding: 0.6rem;
     border-radius: 50%;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 2.5rem;
     height: 2.5rem;
 }

 .share-dropdown a:hover {
     background: var(--secondary-color);
     color: #000;
     transform: translateY(-0.4rem) scale(1.1);
     box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.3);
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-color);
     z-index: 1001;
 }

 /* ========== SLIDER STYLES ========== */
 .slider-main {
     width: 100%;
     height: 100vh;
     overflow: hidden;
     position: relative;
 }

 .slider-images {
     width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .slide {
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     transition: opacity 0.8s ease;
     opacity: 0;
 }

 .slide.active {
     opacity: 1;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 1;
     transition: opacity 0.5s ease;
 }

 .slide-text {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 1.5rem;
     text-align: center;
     padding: 0 2rem;
     background: rgba(0, 0, 0, 0.4);
     pointer-events: none;
 }

 .slide-text .btn1 {
     pointer-events: auto;
     z-index: 100;
     position: relative;
 }

 .head,
 .head1,
 .head2 {
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.2;
     color: white;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     transform: translateY(50px);
     opacity: 0;
     transition: all 0.8s ease;
 }

 .slide.active .head,
 .slide.active .head1,
 .slide.active .head2 {
     transform: translateY(0);
     opacity: 1;
 }

 .para,
 .para1,
 .para2 {
     font-size: 1.3rem;
     text-align: center;
     font-weight: 500;
     color: #f0f0f0;
     line-height: 1.6;
     max-width: 700px;
     transform: translateY(50px);
     opacity: 0;
     transition: all 0.8s ease 0.3s;
 }

 .slide.active .para,
 .slide.active .para1,
 .slide.active .para2 {
     transform: translateY(0);
     opacity: 1;
 }

 .btn1 {
     width: 14rem;
     height: 4rem;
     font-size: 1.2rem;
     text-align: center;
     background-color: var(--primary-color);
     color: white;
     border: none;
     border-radius: 0.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     transform: translateY(50px);
     opacity: 0;
     transition: all 0.8s ease 0.6s;
     position: relative;
     z-index: 100;
 }

 .slide.active .btn1 {
     transform: translateY(0);
     opacity: 1;
 }

 .btn1:hover {
     background-color: #0056cc;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .dot-uper {
     position: absolute;
     right: 2rem;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     gap: 1rem;
     z-index: 10;
 }

 .dot {
     width: 1.8rem;
     height: 0.3rem;
     background: rgba(255, 255, 255, 0.3);
     cursor: pointer;
     transition: background 0.3s;
 }

 .dot.active {
     background: var(--secondary-color);
 }

 /* ========== SECTIONS STYLES ========== */
 .section {
     padding: 5rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease;
 }

 .section.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     font-size: 2.5rem;
     color: var(--dark-color);
     position: relative;
 }

 .section-title::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
     border-radius: 2px;
 }

 /* ========== SERVICES SECTION ========== */
 .hidden-cards {
     display: none;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .hidden-cards.show {
     display: grid;
     animation: fadeIn 0.5s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .btn2 {
     display: inline-block;
     padding: 0.8rem 2rem;
     background: var(--primary-color);
     color: white;
     border: none;
     border-radius: 0.5rem;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn2:hover {
     background: #0056cc;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .uper-btn2 {
     text-align: center;
     margin-top: 2rem;
 }

 /* ========== FLIP CARDS ========== */
 .flip-card {
     perspective: 1000px;
     height: 300px;
     margin-bottom: 2rem;
 }

 .flip-card-inner {
     transform-style: preserve-3d;
     transition: transform 0.6s ease;
     width: 100%;
     height: 100%;
     position: relative;
 }

 .flip-card-front,
 .flip-card-back {
     backface-visibility: hidden;
     -webkit-backface-visibility: hidden;
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     border-radius: 1rem;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     box-shadow: var(--shadow);
 }

 .flip-card-back {
     transform: rotateY(180deg);
 }

 .flip-card:hover .flip-card-inner {
     transform: rotateY(180deg);
 }

 .card-fade-in {
     animation: cardFadeIn 0.6s ease-out forwards;
 }

 @keyframes cardFadeIn {
     from {
         opacity: 0;
         transform: translateY(30px) scale(0.9);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 /* ========== FORM POPUP ========== */
 .form-popup {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 2000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .form-popup.active {
     opacity: 1;
     visibility: visible;
 }

 .form-container {
     background: white;
     padding: 2rem;
     border-radius: 1rem;
     box-shadow: var(--shadow);
     width: 90%;
     max-width: 500px;
     max-height: 90vh;
     overflow-y: auto;
     transform: scale(0.9);
     transition: transform 0.3s ease;
     position: relative;
 }

 .form-popup.active .form-container {
     transform: scale(1);
 }

 .close-btn {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-color);
     transition: all 0.3s ease;
     z-index: 2001;
 }

 .close-btn:hover {
     color: var(--primary-color);
     transform: rotate(90deg);
 }

 .form-title {
     text-align: center;
     margin-bottom: 1.5rem;
     color: var(--text-color);
     font-size: 1.8rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: var(--text-color);
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 0.5rem;
     background: #f8f9fa;
     color: var(--text-color);
     transition: all 0.3s ease;
     font-family: inherit;
     font-size: 1rem;
 }

 .form-group select {
     height: auto;
     min-height: 3rem;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.2);
 }

 .submit-btn {
     width: 100%;
     padding: 0.8rem;
     background: var(--primary-color);
     color: white;
     border: none;
     border-radius: 0.5rem;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     transition: all 0.3s ease;
     position: relative;
 }

 .submit-btn:hover {
     background: #0056cc;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .submit-btn:disabled {
     background: #cccccc;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

 .form-message {
     padding: 0.8rem;
     border-radius: 0.5rem;
     margin-top: 1rem;
     text-align: center;
     display: none;
 }

 .form-message.success {
     background: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
     display: block;
 }

 .form-message.error {
     background: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
     display: block;
 }

 /* ========== LOADING SPINNER ========== */
 .spinner {
     display: inline-block;
     width: 20px;
     height: 20px;
     border: 3px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     border-top-color: #fff;
     animation: spin 1s ease-in-out infinite;
     margin-right: 10px;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* ========== BANNER SECTION ========== */
 .banner-section {
     min-height: 500px;
     display: flex;
     align-items: end;
     background-color: red;
     position: static;
 }

 .uper-banner {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 4rem 2rem;
 }

 .banner-container {
     width: 100%;
     max-width: 1200px;
     height: 400px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
     position: relative;
 }

 .banner-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 200%;
     height: 100%;
     background-image: url('./parallax-1.jpg');
     background-position: left;
 }

 .banner-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     display: flex;
     align-items: center;
     padding: 0 50px;
 }

 .banner-text {
     color: white;
     max-width: 50%;
     margin-left: auto;
     transform: translateX(100px);
     opacity: 0;
     animation: slideIn 1.5s forwards 0.5s;
 }

 .banner-text h1 {
     font-size: 3rem;
     margin-bottom: 15px;
     text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
 }

 .banner-text p {
     font-size: 1.2rem;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .cta-button {
     display: inline-block;
     padding: 12px 30px;
     background: linear-gradient(to right, #ff8a00, #da1b60);
     color: white;
     text-decoration: none;
     border-radius: 30px;
     font-weight: bold;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 @keyframes slideIn {
     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 /* ========== PROJECTS SECTION ========== */
 .uper-para3 {
     text-align: center;
     margin-bottom: 40px;
 }

 .para3 {
     color: #4B5563;
     font-size: 18px;
     max-width: 800px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .filters {
     text-align: center;
     margin-bottom: 40px;
 }

 .filters ul {
     list-style: none;
     padding: 0;
     display: inline-flex;
     gap: 10px;
     background: #fff;
     padding: 8px;
     border-radius: 50px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .filters ul li a {
     text-decoration: none;
     color: #6B7280;
     font-weight: 500;
     padding: 10px 20px;
     border-radius: 9999px;
     transition: all 0.3s ease;
     display: block;
     cursor: pointer;
 }

 .filters ul li a.active,
 .filters ul li a:hover {
     background: linear-gradient(to right, #3B82F6, #1D4ED8);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
 }

 .image-item {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     height: 300px;
     cursor: pointer;
 }

 .image-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .image-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .image-item:hover img {
     transform: scale(1.05);
 }

 .hover-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.9));
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     opacity: 0;
     transition: opacity 0.4s ease;
     padding: 20px;
     text-align: center;
 }

 .image-item:hover .hover-overlay {
     opacity: 1;
 }

 .hover-text h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 10px;
     transform: translateY(20px);
     transition: transform 0.4s ease;
 }

 .hover-text p {
     font-size: 0.95rem;
     margin-bottom: 20px;
     transform: translateY(20px);
     transition: transform 0.4s ease 0.1s;
     opacity: 0.9;
 }

 .image-item:hover .hover-text h3,
 .image-item:hover .hover-text p {
     transform: translateY(0);
 }

 .hover-buttons {
     display: flex;
     gap: 10px;
     transform: translateY(20px);
     transition: transform 0.4s ease 0.2s;
 }

 .image-item:hover .hover-buttons {
     transform: translateY(0);
 }

 .btn {
     padding: 8px 16px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 0.85rem;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
 }

 .btn-primary {
     background: white;
     color: #3B82F6;
 }

 .btn-primary:hover {
     background: #f1f5f9;
     transform: translateY(-2px);
 }

 .btn-outline {
     border: 2px solid white;
     color: white;
     background: transparent;
 }

 .btn-outline:hover {
     background: white;
     color: #3B82F6;
     transform: translateY(-2px);
 }

 .project-counter {
     text-align: center;
     margin: 20px 0;
     font-size: 1.1rem;
     color: #6B7280;
     font-weight: 500;
 }

 .project-counter span {
     font-weight: 700;
     color: #1D4ED8;
 }

 /* ========== COUNTERS SECTION ========== */
 .counter-section {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 25px;
     padding: 70px 50px;
     box-shadow: 0 25px 50px rgba(0, 114, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
     border: 3px solid #0072ff;
     max-width: 1300px;
     width: 100%;
     position: relative;
     overflow: hidden;
     transform-style: preserve-3d;
 }

 .counter-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, #0072ff, #000000, #0072ff, #000000, #0072ff);
     animation: rotate 10s linear infinite;
     z-index: -1;
 }

 .counter-section::after {
     content: '';
     position: absolute;
     inset: 3px;
     background: #ffffff;
     border-radius: 22px;
     z-index: -1;
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .counters-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     margin-top: 50px;
 }

 .counter-card {
     background: linear-gradient(145deg, #ffffff, #f8f9fa);
     padding: 50px 35px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 114, 255, 0.1), inset 0 -2px 0 rgba(0, 114, 255, 0.2);
     transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 2px solid transparent;
     position: relative;
     overflow: hidden;
     transform: translateY(0);
 }

 .counter-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 114, 255, 0.1), transparent);
     transition: left 0.6s ease;
 }

 .counter-card:hover::before {
     left: 100%;
 }

 .counter-card:hover {
     transform: translateY(-15px) scale(1.05);
     box-shadow: 0 25px 50px rgba(0, 114, 255, 0.3), 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 -3px 0 #0072ff;
     border-color: #0072ff;
 }

 .counter-icon-wrapper {
     position: relative;
     width: 100px;
     height: 100px;
     margin: 0 auto 30px;
 }

 .counter-icon-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #0072ff;
     border-radius: 50%;
     animation: iconPulse 2s ease-in-out infinite;
     box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
 }

 @keyframes iconPulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 .counter-icon {
     position: relative;
     z-index: 2;
     font-size: 2.5rem;
     color: #ffffff;
     line-height: 100px;
     transition: all 0.3s ease;
 }

 .counter-card:hover .counter-icon {
     transform: rotate(360deg) scale(1.2);
 }

 .counter-number {
     font-size: 4rem;
     font-weight: 800;
     color: #000000;
     margin: 20px 0;
     line-height: 1;
     position: relative;
     display: inline-block;
 }

 .counter-number::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 3px;
     background: #0072ff;
     transition: width 0.6s ease;
 }

 .counter-card:hover .counter-number::after {
     width: 100%;
 }

 .counter-symbol {
     font-size: 2.5rem;
     font-weight: 700;
     color: #0072ff;
     margin-left: 8px;
     animation: symbolBounce 2s infinite;
 }

 @keyframes symbolBounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-10px);
     }

     60% {
         transform: translateY(-5px);
     }
 }

 .counter-title {
     font-size: 1.4rem;
     font-weight: 700;
     color: #000000;
     margin-top: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
     position: relative;
     transition: all 0.3s ease;
 }

 .counter-card:hover .counter-title {
     color: #0072ff;
     letter-spacing: 3px;
 }

 .counter-description {
     color: #666666;
     font-size: 1rem;
     margin-top: 15px;
     line-height: 1.6;
     transition: all 0.3s ease;
 }

 .counter-card:hover .counter-description {
     color: #000000;
     transform: translateY(5px);
 }

 /* Floating Animation */
 .counter-card {
     animation: float 6s ease-in-out infinite;
 }

 .counter-card:nth-child(1) {
     animation-delay: 0s;
 }

 .counter-card:nth-child(2) {
     animation-delay: 1.5s;
 }

 .counter-card:nth-child(3) {
     animation-delay: 3s;
 }

 .counter-card:nth-child(4) {
     animation-delay: 4.5s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 /* Background Particles */
 .particles {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
 }

 .particle {
     position: absolute;
     background: #0072ff;
     border-radius: 50%;
     animation: particleFloat 8s infinite linear;
 }

 @keyframes particleFloat {
     0% {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
     }
 }

 /* ========== TEAM SECTION ========== */
 .team-section {
     max-width: 1200px;
     margin: 0 auto;
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 800px;
     margin: 0 auto 50px;
 }

 .team-member-card {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     padding: 30px;
     text-align: center;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(0, 0, 0, 0.05);
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 0.6s ease forwards;
 }

 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .team-member-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(to right, #3B82F6, #1D4ED8);
     transform: scaleX(0);
     transition: transform 0.4s ease;
 }

 .team-member-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
 }

 .team-member-card:hover::before {
     transform: scaleX(1);
 }

 .team-member-photo-wrapper {
     width: 150px;
     height: 150px;
     margin: 0 auto 20px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     border: 4px solid #ffffff;
     position: relative;
     background: linear-gradient(135deg, #3B82F6, #1D4ED8);
 }

 .team-member-photo {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.4s ease;
     filter: grayscale(0.2);
 }

 .team-member-card:hover .team-member-photo {
     transform: scale(1.1);
     filter: grayscale(0);
 }

 .team-member-name {
     font-size: 1.5rem;
     font-weight: 700;
     color: #1F2937;
     margin-bottom: 8px;
     transition: color 0.3s ease;
 }

 .team-member-card:hover .team-member-name {
     color: #3B82F6;
 }

 .team-member-role {
     font-size: 1.1rem;
     color: #6B7280;
     margin-bottom: 20px;
     font-weight: 500;
 }

 .team-member-socials {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .social-link {
     width: 45px;
     height: 45px;
     background: #F3F4F6;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6B7280;
     font-size: 1.2rem;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-link:hover {
     background: #3B82F6;
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
 }

 /* Placeholder styles for missing images */
 .placeholder-avatar {
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #667eea, #764ba2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 3rem;
     font-weight: bold;
 }

 /* Show More Button */
 .show-more-container {
     text-align: center;
     margin-top: 40px;
 }

 .show-more-btn {
     background: linear-gradient(135deg, #3B82F6, #1D4ED8);
     color: white;
     border: none;
     padding: 15px 40px;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .show-more-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
 }

 .show-more-btn:active {
     transform: translateY(-1px);
 }

 .show-more-btn i {
     transition: transform 0.3s ease;
 }

 .show-more-btn:hover i {
     transform: translateY(2px);
 }

 /* Hidden team members */
 .team-member-card.hidden {
     display: none;
 }

 /* ========== FORM SECTION STYLES ========== */
 .contact-form-section {
     background: #f9fafb;
     padding: 5rem 2rem;
     position: relative;
     overflow: hidden;
 }

 .contact-form-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .contact-form-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .contact-form-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 1rem;
     position: relative;
 }

 .contact-form-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
     border-radius: 2px;
 }

 .contact-form-subtitle {
     color: #6b7280;
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .contact-form-divider {
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
     margin: 2rem auto;
     border-radius: 2px;
 }

 .contact-form-box {
     background: white;
     border-radius: 20px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     padding: 3rem;
     position: relative;
     overflow: hidden;
 }

 /* Form Grid Layout */
 .contact-form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .contact-form-group {
     margin-bottom: 1.5rem;
 }

 .contact-form-group.full-width {
     grid-column: 1 / -1;
 }

 .contact-form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #1e293b;
     font-size: 0.95rem;
 }

 .contact-form-input {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #e5e7eb;
     border-radius: 10px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: #ffffff;
     font-family: inherit;
 }

 .contact-form-input:focus {
     outline: none;
     border-color: var(--primary-color);
     background: white;
     box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.1);
 }

 .contact-form-textarea {
     resize: vertical;
     min-height: 120px;
     line-height: 1.5;
 }

 .contact-form-select {
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 16px center;
     background-size: 16px;
     padding-right: 40px;
 }

 .contact-form-submit-btn {
     width: 100%;
     padding: 14px 30px;
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 1rem;
 }

 .contact-form-submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
 }

 .contact-form-submit-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
 }

 .contact-form-spinner {
     display: inline-block;
     width: 20px;
     height: 20px;
     border: 3px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     border-top-color: #fff;
     animation: spin 1s ease-in-out infinite;
 }

 .contact-form-message {
     padding: 12px 16px;
     border-radius: 10px;
     margin-top: 1rem;
     text-align: center;
     display: none;
 }

 .contact-form-success {
     background: #d1fae5;
     color: #065f46;
     border: 1px solid #a7f3d0;
     display: block;
 }

 .contact-form-error {
     background: #fee2e2;
     color: #991b1b;
     border: 1px solid #fca5a5;
     display: block;
 }

 /* Skeleton Loading Styles */
 .skeleton-form {
     position: relative;
     overflow: hidden;
 }

 .skeleton-form .contact-form-box {
     background: #f8fafc;
     border-radius: 12px;
     padding: 2rem;
 }

 .skeleton-item {
     background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
     background-size: 200% 100%;
     animation: skeleton-loading 1.5s ease-in-out infinite;
     border-radius: 8px;
     position: relative;
 }

 .skeleton-title {
     height: 2rem;
     width: 60%;
     margin: 0 auto 1.5rem;
 }

 .skeleton-subtitle {
     height: 1rem;
     width: 70%;
     margin: 0 auto 2rem;
 }

 .skeleton-divider {
     height: 2px;
     width: 80px;
     margin: 0 auto 2rem;
     background: #e2e8f0 !important;
     animation: none !important;
 }

 .skeleton-input {
     height: 3rem;
     margin-bottom: 1.25rem;
     border-radius: 6px;
 }

 .skeleton-textarea {
     height: 6rem;
     margin-bottom: 1.5rem;
     border-radius: 6px;
 }

 .skeleton-button {
     height: 3rem;
     margin-top: 1rem;
     border-radius: 8px;
     width: 40%;
 }

 /* Shimmer overlay effect */
 .skeleton-item::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.6),
             transparent);
     animation: shimmer 1.5s ease-in-out infinite;
 }

 @keyframes skeleton-loading {
     0% {
         background-position: 200% 0;
     }

     100% {
         background-position: -200% 0;
     }
 }

 @keyframes shimmer {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 /* Responsive design */
 @media (max-width: 768px) {
     .skeleton-title {
         width: 80%;
         height: 1.75rem;
     }

     .skeleton-subtitle {
         width: 90%;
     }

     .skeleton-button {
         width: 60%;
     }
 }

 /* Optional: Pulse animation for whole form */
 .skeleton-form.pulse {
     animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.8;
     }
 }

 /* Form Background Elements */
 .form-background-elements {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     overflow: hidden;
 }

 .form-bg-circle {
     position: absolute;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(0, 114, 255, 0.1), rgba(0, 198, 255, 0.05));
     animation: float 6s ease-in-out infinite;
 }

 .form-bg-circle:nth-child(1) {
     width: 300px;
     height: 300px;
     top: -150px;
     right: -100px;
     animation-delay: 0s;
 }

 .form-bg-circle:nth-child(2) {
     width: 200px;
     height: 200px;
     bottom: -50px;
     left: -50px;
     animation-delay: 2s;
 }

 .form-bg-circle:nth-child(3) {
     width: 150px;
     height: 150px;
     top: 50%;
     right: 10%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(5deg);
     }
 }

 /* Active navigation link styling */
 #mainNav a.act {
     color: #3b82f6;
     /* Blue color */
     font-weight: bold;
     position: relative;
 }

 #mainNav a.act::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: #3b82f6;
     border-radius: 2px;
 }

 /* Form Success Animation */
 .form-success-animation {
     text-align: center;
     padding: 2rem;
     display: none;
 }

 .success-checkmark {
     width: 80px;
     height: 80px;
     margin: 0 auto 1.5rem;
     position: relative;
 }

 .check-icon {
     width: 80px;
     height: 80px;
     position: relative;
     border-radius: 50%;
     box-sizing: content-box;
     border: 4px solid #10b981;
 }

 .check-icon::before {
     top: 3px;
     left: -2px;
     width: 30px;
     transform-origin: 100% 50%;
     border-radius: 100px 0 0 100px;
 }

 .check-icon::after {
     top: 0;
     left: 30px;
     width: 60px;
     transform-origin: 0 50%;
     border-radius: 0 100px 100px 0;
     animation: rotate-circle 4.25s ease-in;
 }

 .check-icon::before,
 .check-icon::after {
     content: '';
     height: 100px;
     position: absolute;
     background: #ffffff;
     transform: rotate(-45deg);
 }

 .icon-line {
     height: 5px;
     background-color: #10b981;
     display: block;
     border-radius: 2px;
     position: absolute;
     z-index: 10;
 }

 .icon-line.line-tip {
     top: 46px;
     left: 14px;
     width: 25px;
     transform: rotate(45deg);
     animation: icon-line-tip 0.75s;
 }

 .icon-line.line-long {
     top: 38px;
     right: 8px;
     width: 47px;
     transform: rotate(-45deg);
     animation: icon-line-long 0.75s;
 }

 @keyframes rotate-circle {
     0% {
         transform: rotate(-45deg);
     }

     5% {
         transform: rotate(-45deg);
     }

     12% {
         transform: rotate(-405deg);
     }

     100% {
         transform: rotate(-405deg);
     }
 }

 @keyframes icon-line-tip {
     0% {
         width: 0;
         left: 1px;
         top: 19px;
     }

     54% {
         width: 0;
         left: 1px;
         top: 19px;
     }

     70% {
         width: 50px;
         left: -8px;
         top: 37px;
     }

     84% {
         width: 17px;
         left: 21px;
         top: 48px;
     }

     100% {
         width: 25px;
         left: 14px;
         top: 45px;
     }
 }

 @keyframes icon-line-long {
     0% {
         width: 0;
         right: 46px;
         top: 54px;
     }

     65% {
         width: 0;
         right: 46px;
         top: 54px;
     }

     84% {
         width: 55px;
         right: 0px;
         top: 35px;
     }

     100% {
         width: 47px;
         right: 8px;
         top: 38px;
     }
 }

 /* Get More Style */

 .section {
     padding: 5rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .tab-nav {
     display: flex;
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .tab-link {
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f8f9fa;
     border-radius: 50%;
     font-weight: 700;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .tab-link.active {
     background: var(--primary-color);
     color: white;
     border-color: var(--secondary-color);
     transform: scale(1.1);
 }

 .tab-content {
     display: none;
     animation: fadeIn 0.5s ease;
 }

 .tab-content.active {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .device-slider {
     position: relative;
     overflow: hidden;
     height: 580px;
 }

 .device-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .device-slide.active {
     opacity: 1;
 }

 .device-image {
     max-width: 100%;
     height: auto;
     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
 }

 .button {
     display: inline-block;
     padding: 12px 30px;
     border-radius: 30px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     text-align: center;
     cursor: pointer;
 }

 .button-primary {
     background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
     color: white;
     box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
 }

 .button-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
 }

 .button-outline {
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     background: transparent;
 }

 .button-outline:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-3px);
 }

 /* Blog styling */
 .blog-section {
     padding: 5rem 2rem;
     background: white;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-title h2 {
     font-size: 3rem;
     font-weight: 700;
     color: var(--dark-color);
     margin-bottom: 1rem;
 }

 .title-underline {
     width: 80px;
     height: 4px;
     background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
     margin: 0 auto;
     border-radius: 2px;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .blog-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 0.6s ease forwards;
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .blog-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .blog-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .blog-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .blog-image {
     position: relative;
     overflow: hidden;
     height: 250px;
 }

 .blog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .blog-card:hover .blog-image img {
     transform: scale(1.05);
 }

 .blog-date {
     position: absolute;
     top: 20px;
     left: 20px;
     background: white;
     border-radius: 10px;
     padding: 15px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .date-month {
     display: block;
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--primary-color);
     text-transform: uppercase;
     line-height: 1;
 }

 .date-day {
     display: block;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--dark-color);
     line-height: 1;
     margin-top: 5px;
 }

 .blog-content {
     padding: 2rem;
 }

 .blog-title {
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--dark-color);
     margin-bottom: 1rem;
     line-height: 1.3;
 }

 .blog-title a {
     color: inherit;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .blog-title a:hover {
     color: var(--primary-color);
 }

 .blog-excerpt {
     color: #6b7280;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 .blog-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 1rem;
     border-top: 1px solid #e5e7eb;
 }

 .blog-author {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .author-avatar {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .author-name {
     font-weight: 500;
     color: var(--dark-color);
 }

 .read-more {
     color: var(--primary-color);
     font-weight: 600;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 5px;
     transition: all 0.3s ease;
 }

 .read-more:hover {
     gap: 10px;
     color: var(--secondary-color);
 }

 .view-all-container {
     text-align: center;
     margin-top: 4rem;
 }

 .view-all-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     padding: 12px 30px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
 }

 .view-all-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
     gap: 15px;
 }

 /* Contact Information Section */
 .contact-info-section {
     padding: 5rem 2rem;
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .contact-item {
     text-align: center;
     padding: 2rem;
 }

 .contact-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     font-size: 2rem;
     transition: all 0.3s ease;
 }

 .contact-item:hover .contact-icon {
     background: white;
     color: var(--primary-color);
     transform: scale(1.1);
 }

 .contact-title {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .contact-detail {
     opacity: 0.9;
     line-height: 1.6;
 }

 .contact-link {
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .contact-link:hover {
     opacity: 0.8;
     text-decoration: underline;
 }

 /* ========== FOOTER ========== */
 footer {
     background: var(--dark-color);
     color: white;
     padding: 3rem 2rem;
     text-align: center;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     text-align: left;
 }

 .footer-section h3 {
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
     color: var(--secondary-color);
 }

 .footer-section p,
 .footer-section a {
     color: #adb5bd;
     margin-bottom: 0.5rem;
     display: block;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section a:hover {
     color: var(--secondary-color);
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     width: 2.5rem;
     height: 2.5rem;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--secondary-color);
     transform: translateY(-3px);
 }

 .copyright {
     margin-top: 3rem;
     padding-top: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     color: #adb5bd;
 }

 /* ========== LIGHT GALLERY CUSTOM STYLES ========== */
 .lg-backdrop {
     background-color: rgba(0, 0, 0, 0.9);
 }

 .lg-toolbar {
     background-color: rgba(0, 0, 0, 0.5);
 }

 .lg-actions .lg-next,
 .lg-actions .lg-prev {
     background-color: rgba(59, 130, 246, 0.8);
     border-radius: 50%;
     width: 50px;
     height: 50px;
 }

 .lg-actions .lg-next:hover,
 .lg-actions .lg-prev:hover {
     background-color: #3B82F6;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .contact-form-section {
         padding: 3rem 1rem;
     }

     .contact-form-title {
         font-size: 2rem;
     }

     .contact-form-box {
         padding: 2rem;
     }

     .contact-form-grid {
         grid-template-columns: 1fr;
     }

     .contact-form-group.full-width {
         grid-column: 1;
     }
 }

 @media (max-width: 480px) {
     .contact-form-section {
         padding: 2rem 1rem;
     }

     .contact-form-title {
         font-size: 1.8rem;
     }

     .contact-form-box {
         padding: 1.5rem;
     }

     .contact-form-input {
         padding: 10px 14px;
     }
 }

 @media (max-width: 768px) {
     .blog-section {
         padding: 3rem 1rem;
     }

     .section-title h2 {
         font-size: 2.5rem;
     }

     .blog-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .blog-content {
         padding: 1.5rem;
     }

     .contact-info-section {
         padding: 3rem 1rem;
     }

     .contact-grid {
         gap: 2rem;
     }

     .contact-item {
         padding: 1.5rem;
     }
 }

 @media (max-width: 480px) {
     .section-title h2 {
         font-size: 2rem;
     }

     .blog-image {
         height: 200px;
     }

     .blog-date {
         top: 15px;
         left: 15px;
         padding: 10px;
     }

     .date-month {
         font-size: 0.8rem;
     }

     .date-day {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 768px) {
     .section {
         padding: 3rem 1rem;
     }

     .tab-nav {
         justify-content: center;
     }

     .device-slider {
         height: 400px;
     }

     .button {
         padding: 10px 20px;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 576px) {
     .device-slider {
         height: 300px;
     }

     .tab-link {
         width: 50px;
         height: 50px;
         font-size: 1rem;
     }
 }

 /* ========== RESPONSIVE MEDIA QUERIES ========== */
 @media (max-width: 1200px) {
     .uper-offers {
         grid-template-columns: 1fr 2fr;
         gap: 3rem;
     }
 }

 @media (max-width: 992px) {
     .uper-offers {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .p1 {
         order: 2;
     }

     .uper-img {
         position: relative;
         top: 0;
     }

     .image {
         height: 400px;
     }

     .head,
     .head1,
     .head2 {
         font-size: 3rem;
     }

     .para,
     .para1,
     .para2 {
         font-size: 1.2rem;
     }

     .slider-main {
         height: 70vh;
     }
 }

 @media (max-width: 768px) {
     header {
         padding: 0 1rem;
     }

     .menu-toggle {
         display: block;
     }

     .uper-nav {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         background: white;
         flex-direction: column;
         justify-content: center;
         transform: translateX(-100%);
         opacity: 0;
         transition: all 0.3s ease;
         z-index: 999;
     }

     .uper-nav.active {
         transform: translateX(0);
         opacity: 1;
     }

     nav ul {
         flex-direction: column;
         padding: 2rem;
         gap: 2rem;
         text-align: center;
     }

     .row1,
     .hidden-cards {
         grid-template-columns: 1fr;
     }

     .head,
     .head1,
     .head2 {
         font-size: 2.5rem;
     }

     .para,
     .para1,
     .para2 {
         font-size: 1.1rem;
     }

     .slider-main {
         height: 60vh;
     }

     .dot-uper {
         right: 1rem;
     }

     .section {
         padding: 3rem 1rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .share-dropdown {
         right: 1rem;
     }

     .form-container {
         padding: 1.5rem;
         margin: 1rem;
     }

     .flip-card {
         height: 320px;
     }

     .image {
         height: 350px;
     }

     /* Banner Responsive */
     .banner-container {
         height: 300px;
     }

     .banner-text {
         max-width: 70%;
     }

     .banner-text h1 {
         font-size: 2rem;
     }

     .banner-text p {
         font-size: 1rem;
     }

     /* Team Responsive */
     .team-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         max-width: 500px;
     }

     .section-title h2 {
         font-size: 2.8rem;
     }

     .team-member-photo-wrapper {
         width: 130px;
         height: 130px;
     }

     /* Projects Responsive */
     .filters ul {
         flex-wrap: wrap;
         justify-content: center;
         border-radius: 15px;
     }

     .filters ul li a {
         padding: 8px 16px;
         font-size: 0.9rem;
     }

     .image-item {
         height: 250px;
     }

     .hover-buttons {
         flex-direction: column;
         gap: 8px;
     }

     .section-title h2 {
         font-size: 2.5rem;
     }

     /* Counters Responsive */
     .counters-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 30px;
     }

     .counter-number {
         font-size: 3rem;
     }

     .section-title h2 {
         font-size: 2.8rem;
     }

     .counter-section {
         padding: 50px 30px;
     }
 }

 @media (max-width: 576px) {

     .head,
     .head1,
     .head2 {
         font-size: 2rem;
     }

     .slider-main {
         height: 50vh;
     }

     .btn1 {
         width: 12rem;
         height: 3.5rem;
         font-size: 1rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .form-container {
         padding: 1rem;
     }

     .flip-card {
         height: 300px;
     }

     .flip-card-front,
     .flip-card-back {
         padding: 1.5rem;
     }

     .image {
         height: 300px;
     }

     .card-title {
         font-size: 1.2rem;
     }

     .card-icon {
         font-size: 2.5rem;
     }

     /* Banner Responsive */
     .banner-container {
         height: 250px;
     }

     .banner-overlay {
         padding: 0 20px;
     }

     .banner-text {
         max-width: 90%;
     }

     .banner-text h1 {
         font-size: 1.5rem;
     }

     .banner-text p {
         font-size: 0.9rem;
     }

     /* Team Responsive */
     .section-title h2 {
         font-size: 2.2rem;
     }

     .team-member-card {
         padding: 25px 20px;
     }

     .team-member-photo-wrapper {
         width: 120px;
         height: 120px;
     }

     .team-member-name {
         font-size: 1.3rem;
     }

     .team-member-role {
         font-size: 1rem;
     }

     .show-more-btn {
         padding: 12px 30px;
         font-size: 1rem;
     }

     /* Counters Responsive */
     .counters-grid {
         grid-template-columns: 1fr;
     }

     .counter-number {
         font-size: 2.5rem;
     }

     .section-title h2 {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 400px) {
     .flip-card {
         height: 280px;
     }

     .flip-card-front,
     .flip-card-back {
         padding: 1.2rem;
     }

     .card-title {
         font-size: 1.1rem;
     }

     .card-icon {
         font-size: 2.2rem;
     }

     .image {
         height: 250px;
     }
 }