 /* ========== 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: black;
     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, #004099, #0072ff);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
     border-radius: 0.2rem;
 }

 ul li a:hover {
     color: #002a66;
 }

 ul li a:hover::before {
     transform: scaleX(1);
     transform-origin: left;
 }

 ul li a:hover::after {
     transform: scaleX(1);
     transform-origin: right;
 }

 .act {
     color: red !important;
 }

 .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;
 }

 /* Fixed Share Dropdown Styles */
 .share-dropdown {
     position: absolute;
     top: 5rem;
     right: 2rem;
     background: rgba(255, 255, 255, 0.95);
     padding: 0.9rem 1.2rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     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);
     pointer-events: none;
 }

 .share-dropdown.show {
     transform: scaleY(1);
     opacity: 1;
     pointer-events: auto;
 }

 .share-dropdown a {
     color: #fff;
     font-size: 1.1rem;
     background: #111;
     padding: 0.6rem;
     border-radius: 50%;
     transition: all 0.8s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 2.5rem;
     height: 2.5rem;
     text-decoration: none;
 }

 .share-dropdown a:hover {
     background: #3b82f6;
     color: #000;
     transform: translateY(-0.4rem) scale(1.1);
     box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.3);
 }

 /* Fixed Navigation Active State */
 #mainNav a.act {
     color: #144F8C !important;
     font-weight: bold;
     position: relative;
 }

 #mainNav a.act::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: #144F8C;
     border-radius: 2px;
 }

 /* ========== 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 1.2s 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;
 }

 /* Text Styles */
 .uper-heading,
 .uper-heading1,
 .uper-heading2 {
     overflow: hidden;
 }

 .head,
 .head1,
 .head2 {
     font-size: 3.5rem;
     font-weight: bold;
     color: white;
     margin-bottom: 1rem;
     opacity: 0;
     transform: translateY(100%);
     transition: all 1s ease;
 }

 .slide.active .head,
 .slide.active .head1,
 .slide.active .head2 {
     opacity: 1;
     transform: translateY(0);
 }

 /* Different animation for each heading */
 .slide.active .head {
     animation: slideUpFadeIn 1.5s ease forwards;
 }

 .slide.active .head1 {
     animation: slideLeftFadeIn 1.5s ease forwards;
 }

 .slide.active .head2 {
     animation: zoomFadeIn 1.5s ease forwards;
 }

 .uper-para,
 .uper-para1,
 .uper-para2 {
     overflow: hidden;
 }

 .para,
 .para1,
 .para2 {
     font-size: 1.5rem;
     color: white;
     max-width: 800px;
     opacity: 0;
     transform: translateY(50px);
     transition: all 1s ease 0.5s;
 }

 .slide.active .para,
 .slide.active .para1,
 .slide.active .para2 {
     opacity: 1;
     transform: translateY(0);
 }

 /* Different animation for each paragraph */
 .slide.active .para {
     animation: fadeInUp 1.5s ease 0.5s forwards;
 }

 .slide.active .para1 {
     animation: fadeInRight 1.5s ease 0.5s forwards;
 }

 .slide.active .para2 {
     animation: fadeInScale 1.5s ease 0.5s forwards;
 }

 /* Animation Keyframes */
 @keyframes slideUpFadeIn {
     0% {
         opacity: 0;
         transform: translateY(100%);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes slideLeftFadeIn {
     0% {
         opacity: 0;
         transform: translateX(100%);
     }

     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes zoomFadeIn {
     0% {
         opacity: 0;
         transform: scale(0.5);
     }

     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(50px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInRight {
     0% {
         opacity: 0;
         transform: translateX(-50px);
     }

     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInScale {
     0% {
         opacity: 0;
         transform: scale(0.8);
     }

     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 /* Skeleton Styles */
 .skeleton-content {
     display: none;
 }

 /* Responsive Styles */
 @media (max-width: 768px) {

     .head,
     .head1,
     .head2 {
         font-size: 2.5rem;
     }

     .para,
     .para1,
     .para2 {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 480px) {

     .head,
     .head1,
     .head2 {
         font-size: 2rem;
     }

     .para,
     .para1,
     .para2 {
         font-size: 1rem;
     }
 }

 .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);
 }

 /* About Us Section Specific Styles */
 .skeleton-content-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     margin-top: 2rem;
 }

 .skeleton-content-left,
 .skeleton-content-right {
     height: 400px;
     border-radius: 12px;
 }

 /* Animation for About Us Section */
 .about-fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .about-fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Value Cards Hover Effects */
 .value-card {
     transition: all 0.3s ease;
 }

 .value-card:hover {
     transform: translateY(-5px);
 }

 /* Approach Cards */
 .approach-card {
     transition: all 0.3s ease;
 }

 .approach-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 /* Responsive Design for About Us */
 @media (max-width: 768px) {
     .skeleton-content-grid {
         grid-template-columns: 1fr;
     }

     .skeleton-content-left,
     .skeleton-content-right {
         height: 300px;
     }
 }

 .section-header {
     text-align: center;
     padding: 3rem 2rem;
     background: linear-gradient(135deg, #3b82f6, #1e40af);
     color: white;
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: white;
     border-radius: 2px;
 }

 .section-header p {
     font-size: 1.1rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 1.5rem auto 0;
 }

 .reviews-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
 }

 @media (max-width: 968px) {
     .reviews-content {
         grid-template-columns: 1fr;
     }
 }

 .review-form {
     padding: 2.5rem;
     background: #f8fafc;
     border-right: 1px solid #e2e8f0;
 }

 .review-form h3 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     color: #1e293b;
     text-align: center;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
     color: #1e293b;
 }

 .form-control {
     width: 100%;
     padding: 0.8rem 1rem;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
 }

 textarea.form-control {
     min-height: 120px;
     resize: vertical;
 }

 .rating-input {
     display: flex;
     gap: 0.5rem;
     margin-bottom: 1rem;
 }

 .rating-input i {
     font-size: 1.5rem;
     color: #cbd5e1;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .rating-input i.active {
     color: #f59e0b;
 }

 .submit-btn {
     width: 100%;
     background: linear-gradient(135deg, #144F8C, #1e40af);
     color: white;
     padding: 0.8rem 1.8rem;
     border-radius: 8px;
     border: none;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
 }

 .reviews-list {
     padding: 2.5rem;
     max-height: 600px;
     overflow-y: auto;
 }

 .reviews-list h3 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     color: #1e293b;
     text-align: center;
 }

 .review-item {
     padding: 1.5rem;
     border-radius: 12px;
     background: white;
     margin-bottom: 1.5rem;
     border-left: 4px solid #3b82f6;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     animation: fadeIn 0.5s ease;
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 1rem;
 }

 .reviewer-info h4 {
     font-size: 1.1rem;
     color: #1e293b;
     margin-bottom: 0.3rem;
 }

 .review-time {
     font-size: 0.85rem;
     color: #64748b;
 }

 .review-rating {
     color: #f59e0b;
     font-size: 1rem;
 }

 .review-text {
     color: #475569;
     line-height: 1.6;
 }

 .no-reviews {
     text-align: center;
     padding: 2rem;
     color: #64748b;
     font-style: italic;
 }


 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .section-header h2 {
         font-size: 2rem;
     }

     .review-form,
     .reviews-list {
         padding: 2rem;
     }
 }

 @media (max-width: 480px) {
     .section-header {
         padding: 2rem 1.5rem;
     }

     .section-header h2 {
         font-size: 1.8rem;
     }

     .review-form,
     .reviews-list {
         padding: 1.5rem;
     }

     .review-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .review-rating {
         margin-top: 0.5rem;
     }
 }

 /* Responsive Design for About Us */
 @media (max-width: 768px) {
     .skeleton-content-grid {
         grid-template-columns: 1fr;
     }

     .skeleton-content-left,
     .skeleton-content-right {
         height: 300px;
     }
 }

 /* ========== 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.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;
 }

 /* ========== LOCATION SECTION STYLES ========== */
 .location-section {
     background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
     position: relative;
     overflow: hidden;
 }

 .location-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
 }

 /* Location Cards and Layout */
 .location-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: start;
 }

 @media (max-width: 1024px) {
     .location-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }

 /* Contact Info Card */
 .location-contact-card {
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     border-radius: 1.5rem;
     padding: 2.5rem;
     color: white;
     box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
     position: relative;
     overflow: hidden;
 }

 .location-contact-card::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
 }

 .location-contact-card h3 {
     font-size: 1.75rem;
     font-weight: 700;
     margin-bottom: 2rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 /* Contact Items */
 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 1.5rem;
     padding: 1.5rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }

 .contact-item:last-child {
     border-bottom: none;
 }

 .contact-icon {
     width: 3.5rem;
     height: 3.5rem;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 0.75rem;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 1.25rem;
     backdrop-filter: blur(10px);
 }

 .contact-content h4 {
     font-size: 1.125rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: white;
 }

 .contact-content p {
     color: #dbeafe;
     line-height: 1.6;
     margin: 0;
 }

 .contact-content .contact-subtext {
     font-size: 0.875rem;
     color: #93c5fd;
     margin-top: 0.25rem;
 }

 /* Contact Actions */
 .contact-actions {
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.3);
 }

 .contact-actions h4 {
     font-size: 1.125rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .action-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .action-btn {
     background: white;
     color: #3b82f6;
     padding: 0.75rem 1.5rem;
     border-radius: 0.75rem;
     font-weight: 600;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .action-btn:hover {
     background: #f1f5f9;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 /* Feature Cards */
 .feature-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1.5rem;
     margin-top: 2rem;
 }

 .feature-card {
     background: white;
     border-radius: 1rem;
     padding: 1.5rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     border-left: 4px solid #10b981;
     transition: all 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
 }

 .feature-card.purple {
     border-left-color: #8b5cf6;
 }

 .feature-header {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 0.75rem;
 }

 .feature-icon {
     width: 2.5rem;
     height: 2.5rem;
     border-radius: 0.75rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
 }

 .feature-icon.green {
     background: #d1fae5;
     color: #10b981;
 }

 .feature-icon.purple {
     background: #ede9fe;
     color: #8b5cf6;
 }

 .feature-card h4 {
     font-size: 1rem;
     font-weight: 600;
     color: #1f2937;
     margin: 0;
 }

 .feature-card p {
     color: #6b7280;
     font-size: 0.875rem;
     line-height: 1.5;
     margin: 0;
 }

 /* Map Container */
 .map-container {
     background: white;
     border-radius: 1.5rem;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     height: fit-content;
 }

 .map-header {
     padding: 1.5rem 2rem;
     border-bottom: 1px solid #e5e7eb;
 }

 .map-header h3 {
     font-size: 1.5rem;
     font-weight: 700;
     color: #1f2937;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin: 0;
 }

 .map-header p {
     color: #6b7280;
     margin: 0.5rem 0 0 0;
 }

 /* Map Iframe */
 .location-map {
     width: 100%;
     height: 450px;
     border: none;
     display: block;
     filter: saturate(1.1) contrast(1.05);
     transition: filter 0.3s ease;
 }

 .location-map:hover {
     filter: saturate(1.2) contrast(1.1);
 }

 /* Map Overlay */
 .map-overlay {
     position: absolute;
     bottom: 1rem;
     left: 1rem;
     background: white;
     border-radius: 0.75rem;
     padding: 0.75rem 1rem;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-weight: 600;
     color: #374151;
     font-size: 0.875rem;
 }

 /* Map Footer */
 .map-footer {
     padding: 1.5rem 2rem;
     background: #f8fafc;
     border-top: 1px solid #e5e7eb;
 }

 .amenities {
     display: flex;
     gap: 1.5rem;
     flex-wrap: wrap;
 }

 .amenity {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: #6b7280;
     font-size: 0.875rem;
 }

 .amenity i {
     font-size: 0.875rem;
 }

 .amenity .blue {
     color: #3b82f6;
 }

 .amenity .green {
     color: #10b981;
 }

 .amenity .orange {
     color: #f59e0b;
 }

 /* CTA Section */
 .location-cta {
     background-color: #000e25;
     border-radius: 1.5rem;
     padding: 3rem;
     text-align: center;
     color: white;
     margin-top: 4rem;
     box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
     position: relative;
     overflow: hidden;
 }

 .location-cta::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .location-cta h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
     position: relative;
 }

 .location-cta p {
     font-size: 1.125rem;
     color: #dbeafe;
     max-width: 42rem;
     margin: 0 auto 2rem;
     line-height: 1.6;
     position: relative;
 }

 .cta-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
     position: relative;
 }

 .cta-btn {
     padding: 1rem 2rem;
     border-radius: 0.75rem;
     font-weight: 600;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     font-size: 1rem;
 }

 .cta-btn.primary {
     background: white;
     color: #3b82f6;
 }

 .cta-btn.primary:hover {
     background: #f1f5f9;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .cta-btn.secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .cta-btn.secondary:hover {
     background: white;
     color: #3b82f6;
     transform: translateY(-2px);
 }

 /* Where We Are Section Center Alignment */
 .where-we-are-center {
     text-align: center;
 }

 .where-we-are-center .flex {
     justify-content: center;
 }

 .where-we-are-center p {
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Responsive Design for Where We Are */
 @media (max-width: 768px) {
     .where-we-are-center .flex {
         flex-direction: column;
         text-align: center;
     }

     .where-we-are-center .flex .mr-4 {
         margin-right: 0;
         margin-bottom: 1rem;
     }
 }

 /* ========== LOCATION MANAGEMENT STYLES ========== */
 /* Form Styles for Location Management */
 #location-section .form-group {
     margin-bottom: 1.5rem;
 }

 #location-section .form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #374151;
     font-size: 0.95rem;
 }

 #location-section .form-control {
     width: 100%;
     padding: 0.875rem 1rem;
     border: 2px solid #e5e7eb;
     border-radius: 0.75rem;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
     font-family: inherit;
 }

 #location-section .form-control:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
     background: white;
 }

 #location-section .form-control:hover {
     border-color: #d1d5db;
 }

 #location-section textarea.form-control {
     resize: vertical;
     min-height: 100px;
     line-height: 1.5;
 }

 #location-section .form-text {
     display: block;
     margin-top: 0.5rem;
     color: #6b7280;
     font-size: 0.875rem;
 }

 /* Preview Section */
 #location-section .preview-section {
     background: #f8fafc;
     border-radius: 1rem;
     padding: 2rem;
     margin-top: 2rem;
     border: 1px solid #e5e7eb;
 }

 #location-section .preview-title {
     font-weight: 700;
     color: #374151;
     margin-bottom: 1rem;
     font-size: 1.125rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 #location-section .preview-title::before {
     content: '👁️';
     font-size: 1.25rem;
 }

 #location-section .preview-content {
     background: white;
     padding: 1.5rem;
     border-radius: 0.75rem;
     border: 1px solid #e5e7eb;
 }

 #location-section .preview-content .space-y-2>div {
     padding: 0.5rem 0;
     border-bottom: 1px solid #f3f4f6;
 }

 #location-section .preview-content .space-y-2>div:last-child {
     border-bottom: none;
 }

 #location-section .preview-content strong {
     color: #374151;
     font-weight: 600;
     min-width: 80px;
     display: inline-block;
 }

 #location-section .preview-content span {
     color: #6b7280;
     line-height: 1.5;
 }

 /* Save Button */
 #saveLocationBtn {
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     border: none;
     padding: 0.875rem 1.5rem;
     border-radius: 0.75rem;
     color: white;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 #saveLocationBtn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
 }

 #saveLocationBtn:active {
     transform: translateY(0);
 }

 /* ========== RESPONSIVE DESIGN ========== */
 @media (max-width: 768px) {
     .location-section {
         padding: 3rem 1rem;
     }

     .location-contact-card {
         padding: 2rem;
     }

     .contact-item {
         gap: 1rem;
         padding: 1.25rem 0;
     }

     .contact-icon {
         width: 3rem;
         height: 3rem;
         font-size: 1.125rem;
     }

     .action-buttons {
         flex-direction: column;
     }

     .action-btn {
         justify-content: center;
     }

     .feature-grid {
         grid-template-columns: 1fr;
     }

     .map-header {
         padding: 1.25rem 1.5rem;
     }

     .location-map {
         height: 350px;
     }

     .amenities {
         gap: 1rem;
     }

     .location-cta {
         padding: 2rem 1.5rem;
         margin-top: 3rem;
     }

     .location-cta h3 {
         font-size: 1.75rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .cta-btn {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }

     /* CMS Responsive */
     #location-section .form-row {
         grid-template-columns: 1fr;
         gap: 1rem;
     }

     #location-section .preview-section {
         padding: 1.5rem;
     }
 }

 @media (max-width: 480px) {
     .location-section {
         padding: 2rem 1rem;
     }

     .location-contact-card {
         padding: 1.5rem;
         border-radius: 1rem;
     }

     .location-contact-card h3 {
         font-size: 1.5rem;
     }

     .contact-item {
         flex-direction: column;
         gap: 0.75rem;
         text-align: center;
     }

     .contact-icon {
         align-self: center;
     }

     .map-header h3 {
         font-size: 1.25rem;
     }

     .location-map {
         height: 300px;
     }

     .map-overlay {
         bottom: 0.5rem;
         left: 0.5rem;
         padding: 0.5rem 0.75rem;
     }

     .amenities {
         justify-content: center;
     }

     .location-cta {
         padding: 1.5rem 1rem;
         border-radius: 1rem;
     }

     .location-cta h3 {
         font-size: 1.5rem;
     }

     .location-cta p {
         font-size: 1rem;
     }
 }

 /* Review Popup Styles */
 #reviewPopup {
     transition: opacity 0.3s ease;
 }

 #reviewPopup:not(.hidden) {
     display: flex !important;
 }

 .reviews-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .reviews-content {
         grid-template-columns: 1fr 1fr;
         gap: 3rem;
     }
 }

 .review-form {
     padding: 1.5rem;
     background: #f8fafc;
     border-radius: 12px;
     border: 1px solid #e2e8f0;
 }

 .reviews-list {
     padding: 1.5rem;
     max-height: 400px;
     overflow-y: auto;
 }

 .review-item {
     padding: 1.25rem;
     border-radius: 12px;
     background: white;
     margin-bottom: 1rem;
     border-left: 4px solid #3b82f6;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     animation: fadeIn 0.5s ease;
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 0.75rem;
 }

 .reviewer-info h4 {
     font-size: 1rem;
     color: #1e293b;
     margin-bottom: 0.25rem;
 }

 .review-time {
     font-size: 0.8rem;
     color: #64748b;
 }

 .review-rating {
     color: #f59e0b;
     font-size: 0.9rem;
 }

 .review-text {
     color: #475569;
     line-height: 1.5;
     font-size: 0.9rem;
 }

 .no-reviews {
     text-align: center;
     padding: 2rem;
     color: #64748b;
     font-style: italic;
 }

 /* Star Rating Styles */
 .rating-input i.active {
     color: #f59e0b !important;
 }

 .rating-input i.fas {
     color: #f59e0b;
 }

 /* Form Styles */
 .form-group {
     margin-bottom: 1.25rem;
 }

 .form-control {
     width: 100%;
     padding: 0.75rem 1rem;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
 }

 .submit-btn {
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-1px);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     #reviewPopup .bg-white {
         margin: 1rem;
         max-height: 85vh;
     }

     .reviews-content {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .review-form,
     .reviews-list {
         padding: 1rem;
     }
 }

 /* ========== ANIMATIONS ========== */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .location-section .actual-content>* {
     animation: fadeInUp 0.6s ease-out;
 }

 .location-contact-card {
     animation-delay: 0.1s;
 }

 .map-container {
     animation-delay: 0.2s;
 }

 .feature-grid {
     animation-delay: 0.3s;
 }

 .location-cta {
     animation-delay: 0.4s;
 }

 /* ========== SKELETON LOADING ========== */
 .skeleton-location {
     background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
     background-size: 200% 100%;
     animation: loading 1.5s infinite;
     border-radius: 8px;
 }

 .skeleton-location-title {
     height: 2.5rem;
     width: 60%;
     margin: 0 auto 2rem;
 }

 .skeleton-location-divider {
     height: 4px;
     width: 80px;
     margin: 0 auto 3rem;
 }

 .skeleton-location-card {
     height: 400px;
     border-radius: 16px;
     margin-bottom: 2rem;
 }

 .skeleton-location-map {
     height: 450px;
     border-radius: 16px;
 }

 /* Modal Styles */
 .modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     padding: 20px;
 }

 .modal.hidden {
     display: none;
 }

 .modal-content {
     background: white;
     border-radius: 12px;
     width: 90%;
     max-width: 600px;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 }

 .modal-header {
     padding: 20px 25px;
     border-bottom: 1px solid #e5e7eb;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     margin: 0;
     font-size: 1.5rem;
     font-weight: 600;
     color: #1f2937;
 }

 .close-modal {
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: #64748b;
     transition: color 0.2s ease;
 }

 .close-modal:hover {
     color: #374151;
 }

 .modal-body {
     padding: 25px;
 }

 /* Form Styles */
 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: #374151;
     font-size: 0.95rem;
 }

 .form-control {
     width: 100%;
     padding: 12px 15px;
     border: 2px solid #e5e7eb;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
     font-family: inherit;
 }

 .form-control:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
 }

 .form-control:hover {
     border-color: #d1d5db;
 }

 select.form-control {
     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 15px center;
     background-size: 16px;
     padding-right: 40px;
 }

 textarea.form-control {
     resize: vertical;
     min-height: 100px;
     line-height: 1.5;
 }

 /* Form Message */
 .form-message {
     padding: 12px 16px;
     border-radius: 8px;
     margin: 15px 0;
     text-align: center;
     display: none;
 }

 .form-message.success {
     background: #d1fae5;
     color: #065f46;
     border: 1px solid #a7f3d0;
     display: block;
 }

 .form-message.error {
     background: #fee2e2;
     color: #991b1b;
     border: 1px solid #fca5a5;
     display: block;
 }

 /* Loading Spinner */
 .spinner {
     display: inline-block;
     width: 18px;
     height: 18px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     border-top-color: #fff;
     animation: spin 1s ease-in-out infinite;
     margin-left: 8px;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Directions Modal Styles */
 .directions-option {
     transition: all 0.3s ease;
 }

 .directions-option:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .modal-content {
         width: 95%;
         margin: 10px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .modal-body {
         padding: 20px;
     }
 }

 @media (max-width: 480px) {
     .modal-content {
         width: 100%;
         border-radius: 8px;
     }

     .modal-header {
         padding: 15px 20px;
     }

     .modal-body {
         padding: 15px;
     }
 }

 @keyframes loading {
     0% {
         background-position: 200% 0;
     }

     100% {
         background-position: -200% 0;
     }
 }

 /* ========== 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: 600px;
     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.4rem;
     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;
     justify-content: center;
     align-items: center;
     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;

 }

 .banner-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 50px;
 }

 .banner-text {
     color: white;
     max-width: 80%;
     transform: translateX(100px);
     opacity: 0;
     animation: slideIn 1.5s forwards 0.5s;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .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;
 }

 .para3 {
     color: #00183a;
     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;
     align-items: center;
     gap: 20px;
 }

 /* Hidden team members */
 .team-member-card.hidden {
     display: none;
 }

 /* Show More Button Animation */
 .show-more-btn.expanded i {
     transform: rotate(180deg);
 }

 /* Smooth transition for show/hide */
 .team-member-card {
     transition: all 0.4s ease;
 }

 /* Button hover effects */
 .show-more-btn {
     transition: all 0.3s ease;
 }

 .show-more-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
 }

 /* Icon rotation animation */
 .show-more-btn i {
     transition: transform 0.3s ease;
 }

 .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: #000e25;
     /* Blue color */
     font-weight: bold;
     position: relative;
 }

 #mainNav a.act::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: #00102b;
     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: #000e25;
     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);
 }

 /* Improved Footer Styles */
 footer {
     background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
     color: white;
     padding: 4rem 2rem 1rem;
     margin-top: 4rem;
 }

 .footer-content {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     text-align: left;
 }

 .footer-section h3 {
     margin-bottom: 1.5rem;
     font-size: 1.3rem;
     color: #3b82f6;
     position: relative;
 }

 .footer-section h3::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 40px;
     height: 2px;
     background: #3b82f6;
     border-radius: 1px;
 }

 .footer-section p,
 .footer-section a {
     color: #cbd5e1;
     margin-bottom: 0.8rem;
     display: block;
     text-decoration: none;
     transition: all 0.3s ease;
     line-height: 1.6;
 }

 .footer-section a:hover {
     transform: translateX(5px);
 }

 .footer-section i {
     width: 20px;
     color: #3b82f6;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(59, 130, 246, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     margin-bottom: 0;
 }

 .social-links a:hover {
     transform: translateY(-3px);
 }

 .newsletter-form {
     display: flex;
     gap: 0.5rem;
     margin-top: 1rem;
 }

 .newsletter-form input {
     flex: 1;
     padding: 0.8rem;
     border: 1px solid #374151;
     border-radius: 5px;
     background: #1f2937;
     color: white;
     font-size: 0.9rem;
 }

 .newsletter-form input:focus {
     outline: none;
     border-color: #3b82f6;
 }

 .newsletter-form button {
     padding: 0.8rem 1.5rem;
     background: #3b82f6;
     color: white;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
 }

 .newsletter-form button:hover {
     background: #2563eb;
     transform: translateY(-2px);
 }

 .footer-bottom {
     max-width: 1400px;
     margin: 3rem auto 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .copyright {
     color: #9ca3af;
     font-size: 0.9rem;
     border: none;
 }

 .footer-links {
     display: flex;
     gap: 2rem;
 }

 .footer-links a {
     color: #9ca3af;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }


 /* Sub heading styles */
 .sub-heading {
     font-size: 1.5rem;
     font-weight: 400;
     color: #f8f9fa;
     margin-top: 1rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
     transform: translateY(50px);
     opacity: 0;
     transition: all 0.8s ease 0.2s;
 }

 .slide.active .sub-heading {
     transform: translateY(0);
     opacity: 1;
 }

 /* Sticky Get in Touch Button */
 .sticky-get-in-touch {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
 }

 .sticky-contact-btn {
     background: linear-gradient(135deg, #3B82F6, #1D4ED8);
     color: white;
     border: none;
     padding: 15px 25px;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 1rem;
 }

 .sticky-contact-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
 }

 /* Team grid adjustments for all members */
 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin: 0 auto;
 }

 /* Contact form resize */
 .contact-form-box {
     max-width: 1000px;
     margin: 0 auto;
 }

 /* Banner color theme update */
 .uper-banner .banner-container {
     background: linear-gradient(135deg, #3B82F6, #1D4ED8);
 }

 /* Remove newsletter from footer */
 .footer-section:last-child {
     display: none;
 }

 /* Adjust tile sizes for About Us */
 .bg-gradient-to-br.from-blue-500.to-blue-600 {
     min-height: auto;
     height: fit-content;
 }

 /* Projects section top space */

 /* Responsive Footer */
 @media (max-width: 768px) {
     footer {
         padding: 3rem 1.5rem 1rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
     }

     .footer-section h3::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .social-links {
         justify-content: center;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-links {
         justify-content: center;
     }

     .newsletter-form {
         flex-direction: column;
     }
 }

 .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 {
     transform: translateY(-3px);
 }

 .copyright {
     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;
     }
 }

 /* Review Items Styling */
 .review-item {
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     padding: 12px;
     margin-bottom: 12px;
 }

 .review-header {
     display: flex;
     justify-content: between;
     align-items: start;
     margin-bottom: 8px;
 }

 .reviewer-info h4 {
     font-weight: 600;
     color: #1f2937;
     margin: 0;
     font-size: 14px;
 }

 .review-time {
     font-size: 11px;
     color: #6b7280;
     margin-top: 2px;
 }

 .review-rating {
     color: #fbbf24;
     font-size: 12px;
 }

 .review-text {
     color: #374151;
     font-size: 13px;
     line-height: 1.4;
 }

 .no-reviews {
     text-align: center;
     color: #6b7280;
     font-style: italic;
     padding: 20px;
     font-size: 14px;
 }

 /* Star Rating Colors */
 .review-rating .fas.fa-star {
     color: #f59e0b;
 }

 .review-rating .far.fa-star {
     color: #d1d5db;
 }

 /* Review Items Styling - Medium Size */
 .review-item {
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     border-radius: 10px;
     padding: 16px;
     margin-bottom: 16px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 12px;
 }

 .reviewer-info h4 {
     font-weight: 600;
     color: #1f2937;
     margin: 0;
     font-size: 16px;
 }

 .review-time {
     font-size: 13px;
     color: #6b7280;
     margin-top: 4px;
 }

 .review-rating {
     color: #fbbf24;
     font-size: 16px;
 }

 .review-text {
     color: #374151;
     font-size: 15px;
     line-height: 1.5;
 }

 .no-reviews {
     text-align: center;
     color: #6b7280;
     font-style: italic;
     padding: 30px;
     font-size: 16px;
     background: #f9fafb;
     border-radius: 10px;
     border: 1px dashed #d1d5db;
 }

 /* Star Rating Colors */
 .review-rating .fas.fa-star {
     color: #f59e0b;
 }

 .review-rating .far.fa-star {
     color: #d1d5db;
 }

 /* Form styling */
 .form-control {
     transition: all 0.3s ease;
 }

 .form-control:focus {
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
 }

 /* Ensure active navigation is visible */
 #mainNav a.act {
     color: #144F8C !important;
     font-weight: bold;
 }

 #mainNav a.act::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: #144F8C;
     border-radius: 2px;
 }

 /* ========== 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;
         display: flex;
         flex-direction: column !important;
         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;
     }
 }

 /* Fixed 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;
 }

 .menu-toggle {
     display: none !important;
     /* Force hide on all screens initially */
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-color);
     z-index: 1001;
 }

 .uper-nav {
     display: flex !important;
     align-items: center;
 }

 /* Correct Media Query for Mobile Only */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block !important;
         /* Show only on mobile */
     }

     .uper-nav {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         background: white;
         display: flex;
         flex-direction: column !important;
         justify-content: center;
         transform: translateX(-100%);
         opacity: 0;
         transition: all 0.3s ease;
         z-index: 999;
         display: flex !important;
     }

     .uper-nav.active {
         transform: translateX(0);
         opacity: 1;
     }

     nav ul {
         flex-direction: column;
         padding: 2rem;
         gap: 2rem;
         text-align: center;
     }

     /* Share button hide on mobile if needed */
     .share-btn {
         display: none;
     }
 }



 /* ========== BANNER SECTION ========== */
 .banner-section {
     min-height: 500px;
     display: flex;
     justify-content: center;
     align-items: center;
     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;

 }

 .banner-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 50px;
 }

 .banner-text {
     color: white;
     max-width: 80%;
     transform: translateX(100px);
     opacity: 0;
     animation: slideIn 1.5s forwards 0.5s;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .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, #3B82F6, #1D4ED8);
     /* Updated to match theme */
     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;
     }
 }

 /* ========== 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: 600px;
     /* Increased width */
     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;
 }

 /* ========== TEAM SECTION ========== */
 .team-section {
     max-width: 1200px;
     margin: 0 auto;
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     /* Changed to 3x3 grid */
     gap: 30px;
     max-width: 100%;
     margin: 0 auto 50px;
 }

 .team-member-card {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     padding: 25px;
     /* Reduced padding for smaller cards */
     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: 120px;
     /* Reduced size */
     height: 120px;
     /* Reduced size */
     margin: 0 auto 15px;
     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.3rem;
     /* Slightly smaller */
     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: 1rem;
     /* Slightly smaller */
     color: #6B7280;
     margin-bottom: 15px;
     font-weight: 500;
 }

 /* ========== FOOTER ========== */
 footer {
     background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
     color: white;
     padding: 4rem 2rem 1rem;
     margin-top: 4rem;
 }

 .footer-content {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     text-align: left;
 }

 .footer-section h3 {
     margin-bottom: 1.5rem;
     font-size: 1.3rem;
     color: #3b82f6;
     position: relative;
 }

 .footer-section h3::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 40px;
     height: 2px;
     background: #3b82f6;
     border-radius: 1px;
 }

 .footer-section p,
 .footer-section a {
     color: #cbd5e1;
     margin-bottom: 0.8rem;
     display: block;
     text-decoration: none;
     transition: all 0.3s ease;
     line-height: 1.6;
 }

 .footer-section a:hover {
     color: #3b82f6;
     transform: translateX(5px);
 }

 .footer-section i {
     width: 20px;
     color: #3b82f6;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(59, 130, 246, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     margin-bottom: 0;
 }

 .social-links a:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
 }

 .footer-bottom {
     max-width: 1400px;
     margin: 3rem auto 0;
     padding-top: 2rem;
     border-top: 1px solid #374151;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .copyright {
     color: #9ca3af;
     font-size: 0.9rem;
 }

 .footer-links {
     display: flex;
     gap: 2rem;
 }

 .footer-links a {
     color: #9ca3af;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #3b82f6;
 }

 /* ========== READY TO START PROJECT SECTION ========== */
 .location-cta {
     background-color: #000e25;
     border-radius: 1.5rem;
     padding: 2.5rem;
     /* Reduced padding */
     text-align: center;
     color: white;
     margin-top: 3rem;
     /* Reduced margin */
     box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
     position: relative;
     overflow: hidden;
 }

 .location-cta::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .location-cta h3 {
     font-size: 1.8rem;
     /* Slightly smaller */
     font-weight: 700;
     margin-bottom: 1rem;
     position: relative;
 }

 .location-cta p {
     font-size: 1.1rem;
     /* Slightly smaller */
     color: #dbeafe;
     max-width: 42rem;
     margin: 0 auto 2rem;
     line-height: 1.6;
     position: relative;
 }

 /* ========== SECTION SPACING ========== */
 section {
     scroll-margin-top: 100px;
     /* Add space when navigating to sections */
 }

 /* ========== RESPONSIVE DESIGN ========== */
 @media (max-width: 992px) {
     .team-grid {
         grid-template-columns: repeat(2, 1fr);
         /* 2 columns on medium screens */
     }
 }

 @media (max-width: 768px) {
     .team-grid {
         grid-template-columns: 1fr;
         /* 1 column on small screens */
     }

     .banner-text h1 {
         font-size: 2rem;
     }

     .banner-text p {
         font-size: 1rem;
     }

     .form-container {
         max-width: 95%;
         padding: 1.5rem;
     }

     .location-cta {
         padding: 2rem;
     }

     .location-cta h3 {
         font-size: 1.5rem;
     }

     .location-cta p {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .banner-container {
         height: 300px;
     }

     .banner-overlay {
         padding: 0 20px;
     }

     .banner-text {
         max-width: 90%;
     }

     .banner-text h1 {
         font-size: 1.5rem;
     }

     .banner-text p {
         font-size: 0.9rem;
     }

     .cta-button {
         padding: 10px 20px;
         font-size: 0.9rem;
     }
 }

 /* Fix Team and News section positioning */
 #team,
 #news {
     scroll-margin-top: 100px;
     padding-top: 50px;
 }

 /* Fix popup form scroll and display */
 .form-popup.active .form-container {
     transform: scale(1);
     max-height: 85vh;
     overflow-y: auto;
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .submit-btn {
     margin-top: 1rem;
 }

 /* Ensure share button is visible on mobile */
 @media (max-width: 768px) {
     .share-btn {
         display: flex !important;
         position: fixed;
         bottom: 20px;
         right: 20px;
         z-index: 1000;
         background: #000;
         color: #fff;
         width: 50px;
         height: 50px;
         border-radius: 50%;
         align-items: center;
         justify-content: center;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
     }

     .share-dropdown {
         position: fixed;
         bottom: 80px;
         right: 20px;
         top: auto;
         flex-direction: row;
         padding: 10px;
         border-radius: 25px;
     }

     /* Adjust header for mobile */
     header {
         padding: 0 1rem;
     }

     .uper-logo {
         flex: 1;
     }

     .menu-toggle {
         display: block !important;
         margin-left: auto;
         margin-right: 15px;
     }
 }

 /* Improve form container scrolling */
 .form-container {
     max-height: 85vh;
     overflow-y: auto;
 }

 /* Better textarea styling */
 .form-group textarea {
     font-family: inherit;
     line-height: 1.5;
 }

 /* Submit button improvements */
 .submit-btn {
     position: relative;
     overflow: hidden;
 }

 /* Navigation active state improvements */
 #mainNav a.act {
     color: #144F8C !important;
     font-weight: 700;
 }

 /* Smooth scrolling for all anchor links */
 html {
     scroll-behavior: smooth;
 }

 /* Contact Form Popup Styles */
 .form-popup {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 2000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     padding: 20px;
 }

 .form-container {
     background: white;
     padding: 2rem;
     border-radius: 1rem;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     width: 90%;
     max-width: 500px;
     max-height: 85vh;
     overflow-y: auto;
     transform: scale(0.9);
     transition: transform 0.3s ease;
     position: relative;
 }

 .form-popup.active .form-container {
     transform: scale(1);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .form-container {
         padding: 1.5rem;
         margin: 1rem;
         max-width: 95%;
     }
 }

 @media (max-width: 480px) {
     .form-container {
         padding: 1rem;
         margin: 0.5rem;
     }
 }

 /* About Us Section Improvements */
 #about .grid {
     gap: 2rem;
 }

 /* Mission & Vision Cards */
 #about .grid>div {
     min-height: auto;
     height: fit-content;
 }

 /* Values Section */
 #about .bg-gradient-to-br.from-blue-500.to-blue-600 {
     min-height: auto;
 }

 /* What We Do & Approach Sections */
 #about .grid.grid-cols-1.lg\:grid-cols-2 {
     gap: 2rem;
 }

 #about .grid.grid-cols-1.lg\:grid-cols-2>div {
     height: auto;
     min-height: 500px;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {

     #about .grid.grid-cols-1.lg\:grid-cols-3,
     #about .grid.grid-cols-1.lg\:grid-cols-2 {
         grid-template-columns: 1fr;
     }

     #about .grid.grid-cols-1.lg\:grid-cols-2>div {
         min-height: auto;
     }
 }

 /* Improve readability for all popups */
 .modal-content,
 .form-container,
 .review-popup {
     font-size: 16px;
     /* Better for readability */
     line-height: 1.6;
 }

 /* Ensure proper spacing */
 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     font-weight: 600;
     margin-bottom: 0.5rem;
     display: block;
 }

 /* Make inputs more accessible */
 .form-control {
     width: 100%;
     padding: 12px;
     border: 2px solid #e5e7eb;
     border-radius: 8px;
     font-size: 16px;
     /* Prevent zoom on iOS */
     transition: border-color 0.3s ease;
 }

 .form-control:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
 }

 /* Custom Scrollbar Styles */
 .form-container::-webkit-scrollbar {
     width: 8px;
 }

 .form-container::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 10px;
 }

 .form-container::-webkit-scrollbar-thumb {
     background: #3B82F6;
     border-radius: 10px;
 }

 .form-container::-webkit-scrollbar-thumb:hover {
     background: #1D4ED8;
 }

 /* Firefox */
 .form-container {
     scrollbar-width: thin;
     scrollbar-color: #3B82F6 #f1f1f1;
 }

 /* Form Container Height Control */
 .form-container {
     max-height: 80vh;
     overflow-y: auto;
 }

 /* Two-part Form Layout */
 .form-content-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     min-height: 500px;
 }

 .form-fields-section {
     padding-right: 1rem;
     border-right: 1px solid #e5e7eb;
 }

 .form-message-section {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 /* Message and Button Styling */
 .message-textarea-container {
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .message-textarea-container label {
     margin-bottom: 0.5rem;
 }

 #message {
     flex: 1;
     min-height: 200px;
     resize: vertical;
 }

 .form-submit-section {
     margin-top: 2rem;
     padding-top: 1.5rem;
     border-top: 1px solid #e5e7eb;
 }

 .submit-btn {
     width: 100%;
     padding: 15px;
     background: linear-gradient(135deg, #3B82F6, #1D4ED8);
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
 }

 .submit-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .form-content-wrapper {
         grid-template-columns: 1fr;
         gap: 1.5rem;
         min-height: auto;
     }

     .form-fields-section {
         padding-right: 0;
         border-right: none;
         border-bottom: 1px solid #e5e7eb;
         padding-bottom: 1.5rem;
     }

     #message {
         min-height: 150px;
     }
 }

 @media (max-width: 768px) {
     .form-container {
         max-height: 85vh;
     }

     .form-content-wrapper {
         gap: 1rem;
     }
 }