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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            /*background-image: url("../image/backgroundimage.png" );
            /*background-position: center;
            background-repeat:repeat;*
            /*opacity: 0.5;*/
            /*background-size: cover;*/

        }

        /* Navigation */
        nav {
            background: #8dc1f5;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 1.8px;
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 2rem;
        }

        /* Logo Container Styles */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px; /* Space between the image and text */
            border: 2px solid #eece9a;
            border-radius: 4px;
        }

        .logo-img {
            height: 70px; /* Adjust this height to fit your navbar */
            width: 170px;
            display: block;
        }

        .logo-text {
            color: #f39c12;
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }



       /* .logo {
            color: #f39c12;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }*/

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #f39c12;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ecf0f1;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Page Content */
        .page {
            display: block;
            padding: 6rem 2rem 3rem;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

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

        /* Home Page */
        .hero {
            text-align: center;
            padding: 8rem 2rem;
            padding: 20px;
            background-size: cover;
            background-position: center;
            color: white;
            border-radius: 10px;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 3.5s ease-in-out;
            z-index: 1;
        }

        .hero-bg.active {
            opacity: 1;
        }

        /*.hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #2c3e50d9 0%, #34495ed9 100%);
            z-index: 2;
        }*/

        .hero-content {
            position: relative;
            z-index: 3;
            justify-content: bottom;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #f39c12;
            text-shadow: 2px 2px 4px #00000080;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px #00000080;
        }

        .cta-button {
            background: #f39c12;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #e67e22;
        }

        .features-wrapper {
            position: relative;
            margin: 3rem 0;
            overflow: hidden;
        }

        .features {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 1rem 0;
        }

        .features::-webkit-scrollbar {
            display: none;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #f39c12;
            transition: transform 0.3s;
            min-width: 280px;
            flex-shrink: 0;
        }

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

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(243, 156, 18, 0.9);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-btn:hover {
            background: rgba(230, 126, 34, 1);
        }

        .scroll-btn.left {
            left: 10px;
        }

        .scroll-btn.right {
            right: 10px;
        }

        .feature-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: #f39c12;
            width: 30px;
            border-radius: 6px;
        }


        .feature-card1 {
            background: #f8f9fa;
            padding: 2rem;
            margin: 20px;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #f39c12;
            transition: transform 0.3s;
            min-width: 280px;
            flex-shrink: 0;
            border-radius: 15px;
        }

        .feature-card1:hover {
            transform: translateY(-5px);
        }
        .feature-card1 img{
            border-radius: 8px;
        }

        /* About Page */
        .container{
            margin-top: 50px;
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 2rem 0;
        }
        

        .about-text h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #000000;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            height: 50px;
            margin-top: 2rem;
        }
        .stats1 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            background: #f39c12;
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        /* Projects Page */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .project-card {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin: 20px;
            padding: 20px;
        }

        .project-card {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin: 20px;
            padding: 20px;
        }

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

        .project-image {
            height: 100%;
            background: linear-gradient(135deg, #95a5a6, #7f8c8d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            border-radius: 15px;
            overflow: hidden; /* Hide overflow for scrolling effect */
        }

        .project-image {
            height: 100%;
            background: linear-gradient(135deg, #95a5a6, #7f8c8d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            border-radius: 15px;
            overflow: hidden; /* Hide overflow for scrolling effect */
        }

        .image-container {
            display: flex;
            /*animation: scroll 10s linear infinite; /* Adjust duration as needed */
        }

        .project-image img {
            width: auto;
            max-width: 100%;
            height:500px auto;
            border-radius: 15px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); } /* Scrolls the container by its full width */
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-info h3 {
            color: #502c2c;
            margin-bottom: 0.5rem;
        }
        .project-info strong{
            font-size: larger;
            font-family: Arial, Helvetica, sans-serif;
            font-style: bold;
        }
        .project-info p{
            margin-top: 15px;
        }
        .project-info i{
            margin-top: 15px;
        }

        .view-all-projects {
            text-align: center;
            margin-top: 2rem;
        }

        .view-all-btn {
            background: #2c3e50;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .view-all-btn:hover {
            background: #34495e;
        }
        .view-all {
            text-align: center;
            margin-top: 2rem;
        }
        .view-all-btn1 {
            background: #2c3e50;
            color: white;
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .view-all-btn1:hover {
            background: #34495e;
        }


        /* Services Page */
        .services-list {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .service-item {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            border-left: 5px solid #f39c12;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .service-item:hover{
            transform: translateY(-5px);
        }
        .service-item img{
            border-radius: 10px;
        }

        .service-item h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Added styles for page title and subtitle for better presentation */
        .page-title {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Added responsive grid for services list */
        @media (min-width: 768px) {
            .services-list {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }


        /* Contact Page */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 2rem 0;
        }

        .contact-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f39c12;
        }

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

        .contact-info {
            padding: 2rem;
        }

        .contact-info h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .info-item {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .info-icon {
            font-size: 1.5rem;
            color: #f39c12;
        }

        .page-title {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .page-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #bdc3c7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #f39c12;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #34495e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ecf0f1;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #f39c12;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding: 1.5rem 2rem;
            text-align: center;
            color: #95a5a6;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* Tablet Styles (768px - 1024px) */
        /* Tablet Styles (768px - 1024px) */
        @media (max-width: 1024px) {
            nav .container {
                padding: 0 1.5rem;
            }

            .hero {
                padding: 8rem 2rem 4rem; /* Adjusted padding for better spacing */
                min-height: 450px;
            }

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

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

            .features-wrapper {
                margin: 2rem 0;
            }

            /* CHANGED: Stack about content on tablets for better readability */
            .about-content {
                grid-template-columns: 1fr; 
                gap: 3rem;
                /*text-align: center;*/
            }

            /* CRITICAL FIX: Removed fixed width/height that was breaking layout */
            .stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                height: auto; /* Changed from 50px */
                width: 100%;  /* Changed from 100px */
                margin-top: 2rem;
                gap: 1.5rem;
            }

            .stat-box {
                padding: 1.5rem; /* Slightly smaller padding for tablet */
            }

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

            /* NEW ADDITION: Make project cards vertical on tablet */
            .project-card {
                grid-template-columns: 1fr; /* Stack image and text vertically */
                height: auto;
            }

            .project-image {
                height: 200px; /* Give image a fixed height */
                width: 100%;
                border-radius: 8px 8px 0 0;
            }
            
            .project-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* CHANGED: Stack contact form and info vertically */
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .page-title {
                font-size: 2.2rem;
            }
            
            .services-list {
                grid-template-columns: repeat(2, 1fr); /* Ensure services are 2 columns */
            }
        }

        /* Tablet Portrait & Large Mobile Styles (max-width: 768px) */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                color: #2c3e50; /* Darker color for better visibility on blue nav */
            }

            /* Fix Navigation Layout */
            .nav-links {
                position: fixed;
                top: 80px; /* Adjusted to match navbar height */
                left: -100%;
                flex-direction: column;
                background: #8dc1f5; /* Match navbar color */
                width: 100%;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 999;
                text-align: center;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 1rem;
                font-size: 1.2rem; /* Larger font for touch targets */
                border-radius: 5px;
                transition: background 0.3s;
                color: #2c3e50;
            }

            .nav-links a:hover,
            .nav-links a.active {
                background: rgba(255, 255, 255, 0.3);
                color: #fff;
            }

            .logo-img {
                height: 50px; /* Slightly smaller logo for tablet header */
                width: auto;
            }

            /* Hero Section - Better Spacing */
            .hero {
                padding: 8rem 1.5rem 4rem; /* More top padding to clear fixed nav */
                min-height: 450px;
            }

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

            .hero p {
                font-size: 1.1rem;
                max-width: 600px; /* Prevent text from getting too wide */
                margin-left: auto;
                margin-right: auto;
            }

            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            /* Features - Ensure cards are sized well */
            .feature-card {
                min-width: 250px;
                padding: 2rem 1.5rem;
            }

            .scroll-btn {
                width: 45px;
                height: 45px;
            }

            /* Page General */
            .page {
                padding: 7rem 1.5rem 2rem;
            }

            .page-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            /* About Section */
            .about-content {
                grid-template-columns: 1fr; /* Stack text and image */
                gap: 2rem;
                /*text-align: center;*/
            }

            /* STATS: Keep 2 columns for Tablet (Better than 1) */
            .stats {
                grid-template-columns: repeat(2, 1fr); 
                gap: 1.5rem;
                width: 100%;
                height: auto;
            }

            .stat-box {
                padding: 2rem 1rem;
            }

            .stat-box h3 {
                font-size: 2.2rem;
            }

            /* PROJECTS: Vertical Card Layout */
            .projects-grid {
                grid-template-columns: repeat(2, 1fr); /* Keep 2 columns for tablet portrait */
                gap: 1.5rem;
            }

            .project-card {
                display: flex;
                flex-direction: column; /* Force Image Top, Text Bottom */
                height: 100%;
            }

            .project-image {
                height: 200px;
                width: 100%;
                border-radius: 8px 8px 0 0;
            }
            
            .project-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .project-info {
                padding: 1.5rem;
                flex: 1; /* Ensures text area fills remaining height */
            }

            /* SERVICES: Keep 2 columns for Tablet */
            .services-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .service-item {
                padding: 1.5rem;
            }

            /* Contact Section */
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form, .contact-info {
                padding: 1.5rem;
            }
            
            /* Footer */
            .footer-content {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for footer links */
                gap: 2rem;
                text-align: left;
            }
        }

        /* Small Mobile Styles (max-width: 480px) */
        @media (max-width: 480px) {
            .logo-img {
                height: 50px; /* Resize logo for small screens */
                width: auto;
            }

            .logo-text {
                font-size: 1.3rem; /* Resize logo text */
            }

            .hero {
                padding: 6rem 1rem 3rem; /* Adjusted padding for mobile header */
                min-height: 350px;
            }

            .hero h1 {
                font-size: 1.8rem; /* readable size for mobile */
                line-height: 1.3;
            }

            .hero p {
                font-size: 1rem;
                padding: 0 10px;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                width: 100%; /* Full width button on mobile looks better */
                text-align: center;
            }

            .feature-card {
                max-width: 240px;
                padding: 1.5rem;
            }

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

            .page-title {
                font-size: 1.8rem;
            }

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

            .about-text h2 {
                font-size: 1.8rem;
            }

            /* CRITICAL: Force 1 column for Phone (Overrides Tablet 2-column layout) */
            .stats, 
            .projects-grid, 
            .services-list, /* Added this: was missing and causing squash issues */
            .footer-content,
            .contact-wrapper,
            .about-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-box h3 {
                font-size: 2rem;
            }

            .project-info h3 {
                font-size: 1.3rem;
            }
            
            .project-image {
                height: 180px; /* Good height for phone */
            }

            .service-item h3 {
                font-size: 1.3rem;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 16px; /* Prevents zooming on iPhone inputs */
                padding: 10px;
            }

            .footer-bottom {
                font-size: 0.85rem;
                padding: 1.5rem 1rem;
            }
        }

