 :root {
     --primary-dark: #4a148c;
     --primary: #6a11cb;
     --secondary: #2575fc;
     --accent: #00c4cc;
     --light-purple: #7d2ae8;
     --light-pink: #c668eb;
     --white: #ffffff;
     --light-gray: #f8f9fa;
     --gray: #6c757d;
     --dark: #343a40;
     --gold: #FFD700;
     --silver: #C0C0C0;
 }

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

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     color: var(--dark);
     background-color: var(--white);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 h1 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 700;
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 h2 {
     font-size: clamp(1.75rem, 4vw, 2.5rem);
     text-align: center;
     margin-bottom: 2.5rem;
     position: relative;
 }

 h2:after {
     content: '';
     position: absolute;
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--accent));
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
 }

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

 section {
     padding: clamp(40px, 8vw, 80px) 0;
 }

 .btn {
     display: inline-block;
     padding: clamp(12px, 3vw, 14px) clamp(24px, 4vw, 32px);
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     color: var(--white);
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: clamp(1rem, 2vw, 1.1rem);
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
 }

 /* Enhanced Hero Section */
 .hero {
     padding-top: clamp(20px, 15vw, 40px);
     padding-bottom: clamp(60px, 10vw, 100px);
     background: linear-gradient(135deg,
             rgba(106, 17, 203, 0.05) 0%,
             rgba(37, 117, 252, 0.05) 50%,
             rgba(0, 196, 204, 0.05) 100%);
     position: relative;
     overflow: hidden;
     min-height: auto;
     display: flex;
     align-items: center;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 80% 70%, rgba(37, 117, 252, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 40% 80%, rgba(0, 196, 204, 0.08) 0%, transparent 50%);
     pointer-events: none;
 }

 .hero-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: clamp(30px, 6vw, 60px);
     position: relative;
     z-index: 2;
 }

 /* Enhanced Hero Image Container */
 .hero-left {
     flex: 1;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: clamp(400px, 60vw, 700px);
     perspective: 1200px;
 }

 .hero-image-container {
     position: relative;
     width: clamp(350px, 50vw, 650px);
     height: clamp(350px, 50vw, 650px);
     filter: drop-shadow(0 25px 50px rgba(106, 17, 203, 0.25));
 }

 /* Central Logo Container */
 .logo-container {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 25;
     width: clamp(160px, 18vw, 200px);
     height: clamp(160px, 18vw, 200px);
     background: linear-gradient(135deg, var(--white), #f8f9fa);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     box-shadow:
         0 25px 50px rgba(106, 17, 203, 0.3),
         0 0 0 2px rgba(255, 255, 255, 0.9),
         inset 0 4px 8px rgba(255, 255, 255, 0.9);
     border: clamp(5px, 1vw, 10px) solid transparent;
     background-clip: padding-box;
     overflow: hidden;
 }

 .logo-container::before {
     content: '';
     position: absolute;
     top: -10px;
     left: -10px;
     right: -10px;
     bottom: -10px;
     border-radius: 50%;
     background: linear-gradient(135deg,
             rgba(106, 17, 203, 0.9),
             rgba(37, 117, 252, 0.9),
             rgba(0, 196, 204, 0.9));
     z-index: -1;
 }

 .logo-container img {
     width: 85%;
     height: 85%;
     object-fit: contain;
     border-radius: 50%;
     filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
     position: relative;
     z-index: 2;
     border-radius: 10px;
     padding: 5px;
 }

 /* Enhanced Circle Images - BIGGER with Scroll Animation Classes */
 .circle-image {
     position: absolute;
     width: clamp(140px, 22vw, 240px);
     height: clamp(140px, 22vw, 240px);
     border-radius: 50%;
     overflow: hidden;
     box-shadow:
         0 20px 40px rgba(0, 0, 0, 0.25),
         0 8px 20px rgba(255, 255, 255, 0.6) inset;
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
     border: clamp(4px, 0.8vw, 8px) solid transparent;
     background: linear-gradient(135deg, var(--white), var(--white)) padding-box,
         linear-gradient(135deg, var(--primary), var(--accent)) border-box;
     background-clip: padding-box, border-box;
     z-index: 15;
     opacity: 0;
     transform: translateY(50px) scale(0.8);
 }

 .circle-image.scroll-visible {
     opacity: 1;
     transform: translateY(0) scale(1);
 }

 .circle-image:hover {
     transform: scale(1.25) rotate(8deg);
     z-index: 20;
     box-shadow:
         0 30px 60px rgba(106, 17, 203, 0.5),
         0 15px 30px rgba(255, 255, 255, 0.7) inset;
 }

 .circle-image.scroll-visible:hover {
     transform: scale(1.25) rotate(8deg);
 }

 .circle-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .circle-image:hover img {
     transform: scale(1.15);
 }

 /* Floating Particles Effect */
 .particles {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 1;
 }

 .particle {
     position: absolute;
     width: 8px;
     height: 8px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     border-radius: 50%;
     opacity: 0.7;
     animation: floatParticle 18s infinite linear;
 }

 @keyframes floatParticle {
     0% {
         transform: translateY(0) translateX(0) rotate(0deg);
         opacity: 0;
     }

     10% {
         opacity: 0.7;
     }

     90% {
         opacity: 0.7;
     }

     100% {
         transform: translateY(-120px) translateX(60px) rotate(360deg);
         opacity: 0;
     }
 }

 /* Individual Circle Positions - Enhanced for scroll animation */
 .circle-1 {
     top: 8%;
     left: 50%;
     transform: translateX(-50%) translateY(50px) scale(0.8);
     transition-delay: 0.1s;
 }

 .circle-1.scroll-visible {
     transform: translateX(-50%) translateY(0) scale(1);
 }

 .circle-2 {
     top: 50%;
     right: 8%;
     transform: translateY(-50%) translateY(50px) scale(0.8);
     transition-delay: 0.2s;
 }

 .circle-2.scroll-visible {
     transform: translateY(-50%) translateY(0) scale(1);
 }

 .circle-3 {
     bottom: 8%;
     left: 50%;
     transform: translateX(-50%) translateY(50px) scale(0.8);
     transition-delay: 0.3s;
 }

 .circle-3.scroll-visible {
     transform: translateX(-50%) translateY(0) scale(1);
 }

 .circle-4 {
     top: 50%;
     left: 8%;
     transform: translateY(-50%) translateY(50px) scale(0.8);
     transition-delay: 0.4s;
 }

 .circle-4.scroll-visible {
     transform: translateY(-50%) translateY(0) scale(1);
 }

 /* Connection Lines */
 .connection-lines {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 10;
     opacity: 0;
     transition: opacity 1s ease;
 }

 .connection-lines.scroll-visible {
     opacity: 1;
 }

 .line {
     position: absolute;
     background: linear-gradient(90deg,
             transparent,
             rgba(106, 17, 203, 0.4),
             transparent);
     height: 3px;
     width: 0;
     transform-origin: left center;
     transition: width 1s ease;
 }

 .connection-lines.scroll-visible .line {
     width: 60%;
 }

 .line-1 {
     top: 50%;
     left: 50%;
     transform: rotate(90deg) translateX(-30%);
     transition-delay: 0.3s;
 }

 .line-2 {
     top: 50%;
     left: 50%;
     transform: rotate(0deg) translateX(-30%);
     transition-delay: 0.4s;
 }

 .line-3 {
     top: 50%;
     left: 50%;
     transform: rotate(270deg) translateX(-30%);
     transition-delay: 0.5s;
 }

 .line-4 {
     top: 50%;
     left: 50%;
     transform: rotate(180deg) translateX(-30%);
     transition-delay: 0.6s;
 }

 /* Hero Text Styling */
 .hero-text {
     flex: 1;
     max-width: 550px;
     position: relative;
     z-index: 2;
 }

 .hero-text h1 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     line-height: 1.2;
     margin-bottom: clamp(15px, 3vw, 25px);
     background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     animation: textGlow 3s ease-in-out infinite;
 }

 @keyframes textGlow {

     0%,
     100% {
         filter: drop-shadow(0 5px 15px rgba(106, 17, 203, 0.2));
     }

     50% {
         filter: drop-shadow(0 5px 25px rgba(106, 17, 203, 0.4));
     }
 }

 .hero-text p {
     font-size: clamp(1rem, 2vw, 1.25rem);
     margin-bottom: clamp(15px, 3vw, 30px);
     color: var(--gray);
     line-height: 1.8;
     position: relative;
     padding-left: 20px;
     border-left: 4px solid var(--accent);
 }

 /* Slogan Styling */
 .slogan {
     font-size: clamp(1.2rem, 2.8vw, 1.6rem);
     color: var(--primary-dark);
     margin-top: 15px;
     margin-bottom: 25px;
     font-weight: 600;
     font-style: italic;
     position: relative;
     padding: 15px 0;
     text-align: center;
     background: linear-gradient(90deg,
             transparent,
             rgba(106, 17, 203, 0.1),
             transparent);
     border-radius: 10px;
 }

 .slogan::before {
     content: "❝";
     position: absolute;
     left: 10px;
     top: 0;
     color: var(--accent);
     font-size: clamp(2rem, 4vw, 2.5rem);
 }

 .slogan::after {
     content: "❞";
     position: absolute;
     right: 10px;
     bottom: 0;
     color: var(--accent);
     font-size: clamp(2rem, 4vw, 2.5rem);
 }

 /* Enhanced Projects Section */
 .projects-section {
     background: linear-gradient(135deg, rgba(106, 17, 203, 0.03) 0%, rgba(0, 196, 204, 0.03) 100%);
     padding: clamp(40px, 8vw, 100px) 0;
 }

 .l-projects {
     display: flex;
     flex-wrap: wrap;
     gap: clamp(30px, 5vw, 60px);
     align-items: flex-start;
 }

 .l-projects__sx {
     flex: 1;
     min-width: 280px;
 }

 .l-projects__dx {
     flex: 2;
     min-width: 280px;
 }

 .o-project-title {
     font-size: clamp(1.5rem, 3vw, 2.5rem);
     color: var(--primary-dark);
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 15px;
 }

 .o-project-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--accent));
     border-radius: 2px;
 }

 .o-project-description {
     font-size: clamp(0.95rem, 1.8vw, 1.1rem);
     color: var(--gray);
     line-height: 1.8;
     margin-bottom: clamp(20px, 4vw, 40px);
 }

 .c-category-name-list {
     display: flex;
     flex-direction: column;
     gap: 15px;
     margin-top: 30px;
 }

 .category-project-name {
     font-size: clamp(1rem, 1.8vw, 1.2rem);
     padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
     cursor: pointer;
     border-radius: 10px;
     transition: all 0.3s ease;
     color: var(--gray);
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
 }

 .category-project-name:hover {
     color: var(--primary-dark);
     transform: translateX(10px);
     border-color: var(--primary);
     background: rgba(106, 17, 203, 0.05);
 }

 .category-project-name.isActive {
     color: var(--white);
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
     border-color: transparent;
     transform: translateX(10px);
 }

 .category-project-name.isActive::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 4px;
     background: var(--accent);
 }

 /* Single Project Display */
 .single-project-display {
     width: 100%;
     height: clamp(300px, 50vw, 500px);
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     background: var(--white);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     display: none;
 }

 .single-project-display.active {
     display: block;
 }

 .single-project-display .c-sliding-card {
     height: 100%;
     width: 100%;
     position: relative;
 }

 .single-project-display .o-cover-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .single-project-display .c-sliding-card:hover .o-cover-image {
     transform: scale(1.05);
 }

 .single-project-display .c-sliding-card__overlay {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: clamp(20px, 4vw, 40px);
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
     color: var(--white);
     transition: all 0.3s ease;
 }

 .single-project-display .o-card-title {
     font-size: clamp(1.25rem, 3vw, 2rem);
     margin-bottom: 15px;
     color: var(--white);
 }

 .single-project-display .o-card-description {
     font-size: clamp(0.9rem, 1.8vw, 1.1rem);
     line-height: 1.6;
     margin-bottom: clamp(15px, 3vw, 25px);
     opacity: 0.95;
     max-width: 600px;
 }

 .single-project-display .o-card-link {
     display: inline-block;
     margin-top: clamp(10px, 2vw, 20px);
 }

 /* Project Navigation Buttons */
 .project-nav-buttons {
     display: flex;
     justify-content: center;
     gap: clamp(15px, 3vw, 20px);
     margin-top: 30px;
 }

 .project-nav-btn {
     width: clamp(40px, 6vw, 50px);
     height: clamp(40px, 6vw, 50px);
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     color: white;
     border: none;
     cursor: pointer;
     font-size: clamp(1rem, 2vw, 1.2rem);
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
 }

 .project-nav-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
 }

 .project-nav-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     transform: none;
 }

 .project-nav-btn.prev-btn {
     background: linear-gradient(135deg, var(--primary), var(--light-purple));
 }

 .project-nav-btn.next-btn {
     background: linear-gradient(135deg, var(--secondary), var(--accent));
 }

 /* Features Section with Emoji Icons */
 .features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
     gap: clamp(20px, 4vw, 30px);
     margin-top: 40px;
 }

 .feature {
     background-color: var(--white);
     padding: clamp(20px, 4vw, 30px);
     border-radius: 15px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
     text-align: center;
 }

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

 .feature-icon {
     font-size: clamp(2rem, 5vw, 3rem);
     margin-bottom: clamp(15px, 3vw, 20px);
     display: inline-block;
     line-height: 1;
 }

 .feature h3 {
     font-size: clamp(1.25rem, 2.5vw, 1.5rem);
     margin-bottom: 15px;
     color: var(--primary-dark);
 }

 .feature p {
     color: var(--gray);
     line-height: 1.6;
     font-size: clamp(0.9rem, 1.8vw, 1rem);
 }

 /* Gallery Navigation Buttons */
 .gallery-nav {
     display: flex;
     justify-content: center;
     gap: clamp(10px, 3vw, 15px);
     margin-top: 30px;
 }

 .gallery-nav button {
     width: clamp(45px, 8vw, 60px);
     height: clamp(45px, 8vw, 60px);
     border-radius: 50%;
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     color: white;
     border: none;
     cursor: pointer;
     font-size: clamp(1.2rem, 2.5vw, 1.5rem);
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .gallery-nav button:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
 }

 .gallery-nav button i {
     font-size: clamp(1.2rem, 2.5vw, 1.5rem);
 }

 .gallery-nav button#prevBtn {
     background: linear-gradient(90deg, var(--primary), var(--light-purple));
 }

 .gallery-nav button#nextBtn {
     background: linear-gradient(90deg, var(--secondary), var(--accent));
 }

 /* About Section */
 .about {
     background-color: var(--light-gray);
 }

 .about-content {
     display: flex;
     align-items: center;
     gap: clamp(30px, 5vw, 50px);
 }

 .about-text {
     flex: 1;
 }

 .about-text p {
     margin-bottom: clamp(15px, 3vw, 20px);
     font-size: clamp(0.95rem, 1.8vw, 1.1rem);
     line-height: 1.8;
 }

 .about-image {
     flex: 1;
     text-align: center;
 }

 .about-image img {
     max-width: 100%;
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     height: auto;
 }

 .vision-mission {
     display: flex;
     flex-wrap: wrap;
     gap: clamp(20px, 4vw, 40px);
     margin-top: 40px;
 }

 .vision,
 .mission {
     flex: 1;
     min-width: 300px;
     padding: clamp(20px, 4vw, 30px);
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     background-color: var(--white);
 }

 .vision {
     border-top: 5px solid var(--light-purple);
 }

 .mission {
     border-top: 5px solid var(--accent);
 }

 .vision h3,
 .mission h3 {
     font-size: clamp(1.25rem, 2.5vw, 1.5rem);
     margin-bottom: 15px;
 }

 .vision p,
 .mission p {
     font-size: clamp(0.95rem, 1.8vw, 1rem);
     line-height: 1.7;
 }

 .why-choose-us {
     background: linear-gradient(135deg, rgba(106, 17, 203, 0.03) 0%, rgba(0, 196, 204, 0.03) 100%);
 }

 .gallery-section {
     background-color: var(--light-gray);
 }

 .gallery-container {
     position: relative;
     overflow: hidden;
     padding: 20px 0;
 }

 .gallery-track {
     display: flex;
     gap: clamp(15px, 3vw, 20px);
     transition: transform 0.5s ease;
 }

 .gallery-item {
     min-width: clamp(250px, 40vw, 300px);
     height: clamp(150px, 30vw, 200px);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     flex-shrink: 0;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 .services {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
     gap: clamp(20px, 4vw, 30px);
     margin-top: 40px;
 }

 .service {
     background-color: var(--white);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease;
 }

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

 .service-img {
     height: clamp(150px, 30vw, 200px);
     overflow: hidden;
 }

 .service-img img {
     width: 100%;
     height: 100%;
     transition: transform 0.5s ease;
 }

 .service:hover .service-img img {
     transform: scale(1.05);
 }

 .service-content {
     padding: clamp(20px, 4vw, 25px);
 }

 .service h3 {
     font-size: clamp(1.25rem, 2.5vw, 1.5rem);
     margin-bottom: 10px;
 }

 .service p {
     font-size: clamp(0.9rem, 1.8vw, 1rem);
     line-height: 1.6;
 }

 /* ========== ENHANCED RESPONSIVE DESIGN ========== */

 /* Large tablets and small laptops (992px to 1200px) */
 @media (max-width: 1200px) {
     .container {
         width: 94%;
     }

     .hero-content {
         gap: 40px;
     }

     .hero-image-container {
         width: min(500px, 50vw);
         height: min(500px, 50vw);
     }

     .circle-image {
         width: clamp(120px, 18vw, 200px);
         height: clamp(120px, 18vw, 200px);
     }
 }

 /* Tablets (768px to 991px) */
 @media (max-width: 991px) {
     .hero-content {
         flex-direction: column;
     }

     .hero-left {
         order: 2;
         min-height: 400px;
     }

     .hero-text {
         order: 1;
         text-align: center;
     }

     .hero-text p {
         border-left: none;
         padding-left: 0;
         text-align: left;
     }

     .hero-image-container {
         width: min(400px, 70vw);
         height: min(400px, 70vw);
     }

     .circle-image {
         width: clamp(100px, 15vw, 160px);
         height: clamp(100px, 15vw, 160px);
     }

     .logo-container {
         width: clamp(100px, 12vw, 140px);
         height: clamp(100px, 12vw, 140px);
     }

     .about-content {
         flex-direction: column;
     }

     .about-text {
         order: 2;
     }

     .about-image {
         order: 1;
     }

     .vision-mission {
         flex-direction: column;
     }

     .vision,
     .mission {
         width: 100%;
     }

     .l-projects {
         flex-direction: column;
     }

     .single-project-display {
         height: min(400px, 60vh);
     }
 }

 /* Mobile devices (576px to 767px) */
 @media (max-width: 767px) {
     h2:after {
         width: 60px;
     }

     .container {
         width: 96%;
         padding: 0 12px;
     }

     section {
         padding: 50px 0;
     }

     .hero {
         padding-top: 100px;
     }

     .hero-image-container {
         width: min(350px, 85vw);
         height: min(350px, 85vw);
     }

     .circle-image {
         width: min(110px, 25vw);
         height: min(110px, 25vw);
     }

     .logo-container {
         width: min(90px, 20vw);
         height: min(90px, 20vw);
     }

     .circle-1 {
         top: 5%;
     }

     .circle-2 {
         right: 5%;
     }

     .circle-3 {
         bottom: 5%;
     }

     .circle-4 {
         left: 5%;
     }

     .single-project-display .c-sliding-card__overlay {
         padding: 20px;
     }

     .single-project-display .o-card-title {
         font-size: 1.3rem;
     }

     .single-project-display .o-card-description {
         font-size: 0.9rem;
     }

     .gallery-item {
         min-width: 220px;
         height: 140px;
     }

     .slogan {
         font-size: 1.1rem;
         padding: 10px 30px;
     }

     .slogan::before,
     .slogan::after {
         font-size: 1.5rem;
     }
 }

 /* Small mobile devices (up to 575px) */
 @media (max-width: 575px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.6rem;
         margin-bottom: 1.5rem;
     }

     .container {
         width: 98%;
         padding: 0 10px;
     }

     .hero {
         padding-top: 80px;
         padding-bottom: 40px;
     }

     .hero-content {
         gap: 30px;
     }

     .hero-left {
         min-height: 320px;
     }

     .hero-image-container {
         width: 300px;
         height: 300px;
     }

     .circle-image {
         width: 100px;
         height: 100px;
         border-width: 3px;
     }

     .logo-container {
         width: 80px;
         height: 80px;
         border-width: 4px;
     }

     .slogan {
         font-size: 1rem;
         margin: 10px 0 20px;
         padding: 8px 25px;
     }

     .slogan::before,
     .slogan::after {
         font-size: 1.2rem;
     }

     .single-project-display {
         height: 250px;
         border-radius: 15px;
     }

     .single-project-display .c-sliding-card__overlay {
         padding: 15px;
     }

     .single-project-display .o-card-title {
         font-size: 1.1rem;
         margin-bottom: 8px;
     }

     .single-project-display .o-card-description {
         font-size: 0.8rem;
         margin-bottom: 12px;
     }

     .category-project-name {
         padding: 10px 15px;
         font-size: 1rem;
     }

     .gallery-nav button {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .project-nav-btn {
         width: 40px;
         height: 40px;
     }

     .services {
         gap: 20px;
     }

     .service {
         border-radius: 12px;
     }

     .service-content {
         padding: 20px;
     }
 }

 /* Extra small devices (up to 375px) */
 @media (max-width: 375px) {
     h1 {
         font-size: 1.8rem;
     }

     h2 {
         font-size: 1.4rem;
     }

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

     .hero-image-container {
         width: 280px;
         height: 280px;
     }

     .circle-image {
         width: 90px;
         height: 90px;
         border-width: 2px;
     }

     .logo-container {
         width: 70px;
         height: 70px;
         border-width: 3px;
     }

     .single-project-display {
         height: 220px;
     }

     .single-project-display .o-card-title {
         font-size: 1rem;
     }

     .single-project-display .o-card-description {
         font-size: 0.75rem;
         line-height: 1.5;
     }

     .gallery-item {
         min-width: 200px;
         height: 130px;
     }

     .features,
     .services {
         grid-template-columns: 1fr;
     }
 }

 /* Landscape orientation adjustments */
 @media (max-height: 600px) and (orientation: landscape) {
     .hero {
         min-height: auto;
         padding: 100px 0 60px;
     }

     .hero-left {
         min-height: 280px;
     }

     .hero-image-container {
         width: 280px;
         height: 280px;
     }

     .circle-image {
         width: 90px;
         height: 90px;
     }

     .logo-container {
         width: 70px;
         height: 70px;
     }
 }

 /* Fix for very high resolution screens */
 @media (min-width: 2000px) {
     .container {
         max-width: 1600px;
     }

     section {
         padding: 120px 0;
     }

     .hero-image-container {
         width: 700px;
         height: 700px;
     }

     .circle-image {
         width: 260px;
         height: 260px;
     }

     .logo-container {
         width: 200px;
         height: 200px;
     }
 }