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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: #e5e7eb;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes expandSearch {
            from {
                width: 40px;
                opacity: 0;
            }
            to {
                width: 200px;
                opacity: 1;
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e5e7eb;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 1001;
        }

        /* Header Styles */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 80px;
            background: linear-gradient(90deg, #1e3a8a, #0369a1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            margin-bottom: 40px;
        }

        .logo {
            font-size: 38px;
            font-weight: 900;
            letter-spacing: 1.2px;
        }

        .logo span {
            color: #fef08a;
        }

        .logo small {
            font-size: 14px;
            letter-spacing: 2px;
            display: block;
            margin-top: 8px;
            color: #e5e7eb;
        }

        .nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: #e5e7eb;
            font-weight: 600;
            font-size: 18px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #fef08a;
            transition: width 0.3s ease;
        }

        .nav a:hover::after,
        .nav a.active::after {
            width: 100%;
        }

        .nav a:hover,
        .nav a.active {
            color: #fef08a;
        }

        /* Search Bar Styles */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 25px;
        }

        .search-container input {
            width: 40px;
            height: 40px;
            padding: 0 40px 0 15px;
            border: 2px solid #4b5563;
            border-radius: 20px;
            background: #374151;
            color: #e5e7eb;
            font-size: 16px;
            transition: width 0.4s ease, background 0.3s ease, border-color 0.3s ease;
            outline: none;
        }

        .search-container input:focus,
        .search-container input.active {
            width: 200px;
            background: #1e293b;
            border-color: #60a5fa;
            animation: expandSearch 0.4s ease-out;
        }

        .search-container button {
            position: absolute;
            right: 10px;
            background: transparent;
            border: none;
            color: #60a5fa;
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .search-container button:hover {
            color: #fef08a;
        }

        .search-call {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-call .call-btn {
            background: linear-gradient(90deg, #fef08a, #facc15);
            color: #1e3a8a;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .search-call .call-btn:hover {
            background: linear-gradient(90deg, #facc15, #eab308);
            transform: scale(1.05);
        }

        /* Service Component */
        .service-component {
            position: relative;
            min-height: 100vh;
            padding: 80px 20px;
            margin-bottom: 60px;
        }

        .service-header {
            background: url('/images/service-header-bg.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
            border-radius: 15px;
        }

        .service-header .overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            border-radius: 15px;
        }

        .service-header .content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 900px;
            padding: 20px;
        }

        .service-header h1 {
            font-size: 64px;
            font-weight: 900;
            margin: 0;
            background: linear-gradient(90deg, #3b82f6, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
        }

        .service-header p {
            font-size: 22px;
            margin-top: 25px;
            color: #e5e7eb;
            font-weight: 400;
        }

        /* Side Icons */
        .side-icons {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 1000;
        }

        .side-icons a {
            background: linear-gradient(135deg, #e6f0fa, #bfdbfe);
            color: #1e40af;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .side-icons a:hover {
            background: linear-gradient(135deg, #1e40af, #06b6d4);
            color: #fff;
            transform: scale(1.15);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* contact section */
        .con-html {
            background: linear-gradient(135deg, #e0eafc, #cfdef3);
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }

        #con-main-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            width: 100%;
            background: #ffffff;
            padding: 50px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            margin: 0 auto;
            animation: scaleIn 0.8s ease-out;
            position: relative;
            z-index: 2;
        }

        #con-main-container::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 30px;
            background: rgba(0, 0, 0, 0.1);
            filter: blur(15px);
            border-radius: 50%;
            z-index: -1;
        }

        #con-main-container .con-left-section,
        #con-main-container .con-right-section {
            flex: 1;
            padding: 30px;
            min-width: 300px;
        }

        #con-main-container h1 {
            color: #1e3a8a;
            font-size: 3em;
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            animation: fadeInUp 0.8s ease-out;
        }

        #con-main-container h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #22d3ee);
            bottom: -10px;
            left: 0;
            transition: width 0.4s ease;
        }

        #con-main-container:hover h1::after {
            width: 120px;
        }

        #con-main-container p {
            color: #4b5563;
            line-height: 1.8;
            font-size: 18px;
            margin-bottom: 30px;
            animation: fadeInUp 0.9s ease-out 0.2s both;
        }

        #con-main-container .con-contact-info div {
            display: flex;
            color: #000000;
            align-items: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease, color 0.3s ease;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        #con-main-container .con-contact-info div:hover {
            transform: translateX(20px);
            color: #3b82f6;
        }

        #con-main-container .con-contact-info i {
            margin-right: 20px;
            color: #3b82f6;
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        #con-main-container .con-contact-info div:hover i {
            transform: scale(1.3);
        }

        #con-main-container .con-contact-info a {
            color: #22d3ee;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        #con-main-container .con-contact-info a:hover {
            color: #22d3ee;
        }

        #con-main-container form {
            display: flex;
            flex-direction: column;
            animation: fadeInUp 1.1s ease-out 0.4s both;
        }

        #con-main-container input,
        #con-main-container textarea {
            margin-bottom: 25px;
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            background: #f9fafb;
            color: #1e3a8a;
            font-size: 16px;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }

        #con-main-container input:focus,
        #con-main-container textarea:focus {
            border-color: #3b82f6;
            transform: scale(1.02);
            outline: none;
        }

        #con-main-container button {
            padding: 15px;
            background: linear-gradient(90deg, #3b82f6, #22d3ee);
            color: #fff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.2em;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.3s ease;
            animation: pulse 2s infinite;
        }

        #con-main-container button:hover {
            background: linear-gradient(90deg, #22d3ee, #3b82f6);
            transform: scale(1.05);
        }

        /* Map Section */
        #conmap-container {
            max-width: 1440px;
            margin: 60px auto;
            padding: 40px 20px;
            background-color: #FFFFFF;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
        }

        .conmap-header {
            text-align: center;
            padding-bottom: 30px;
        }

        .conmap-logo {
            font-size: 28px;
            font-weight: bold;
            color: #3b82f6;
        }

        .conmap-title {
            font-size: 36px;
            margin-top: 12px;
            font-weight: 600;
            color: #0f172a;
        }

        .conmap-logo,
        .conmap-title {
            overflow: hidden;
            white-space: nowrap;
            border-right: 2px solid #3b82f6;
            width: 0;
            display: inline-block;
        }

        /* Animation only when 'typing-start' is added */
        .typing-start .conmap-logo {
            animation: typing 2.5s steps(20, end) forwards, blink 0.75s step-end infinite;
        }

        .typing-start .conmap-title {
            animation: typing 2.5s steps(25, end) forwards 2.7s, blink 0.75s step-end infinite 2.7s;
        }

        /* Subtitle stays normal */
        .conmap-subtitle {
            font-size: 18px;
            color: #64748b;
            margin-top: 10px;
        }

        @keyframes typing {
            to {
                width: 100%;
            }
        }

        /*@keyframes blink {*/
        /*    50% {*/
        /*        border-color: white;*/
        /*    }*/
        /*}*/

        .conmap-divider {
            height: 4px;
            width: 60px;
            background-color: #3b82f6;
            margin: 30px auto;
            border-radius: 2px;
        }

        .conmap-location-card {
            margin-bottom: 60px;
        }

        .conmap-location-title {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #1e293b;
        }

        .conmap-address {
            color: #475569;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }

        .conmap-map-container {
            width: 100%;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        .conmap-location-list {
            margin-top: 60px;
        }

        .conmap-location-list-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: #0f172a;
            font-weight: 600;
            display: flex;
            justify-content: center;
            align-items: center;
            color: blue;
        }

        .conmap-location-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
        }

        .conmap-location-item {
            background-color: #f9fafb;
            color: #1e293b;
            padding: 24px;
            border-radius: 12px;
            flex: 1 1 calc(33.333% - 24px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            min-height: 160px;
        }

        .conmap-location-item::before {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .conmap-location-item:hover::before {
            top: 0;
        }

        .conmap-location-item:hover {
            color: white;
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .conmap-location-item * {
            transition: color 0.4s ease;
        }

        .conmap-contact {
            font-weight: 500;
            color: #3b82f6;
            margin-top: 15px;
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .header {
                padding: 20px 40px;
                margin-bottom: 30px;
            }

            .nav {
                gap: 30px;
            }

            .search-container input:focus,
            .search-container input.active {
                width: 180px;
            }

            .service-header {
                height: 450px;
                margin-bottom: 40px;
            }

            .service-header h1 {
                font-size: 48px;
            }
        }

        @media (max-width: 992px) {
            #con-main-container {
                flex-direction: column;
                padding: 40px 20px;
            }

            #con-main-container h1 {
                font-size: 2.5em;
                text-align: center;
            }

            #con-main-container .con-left-section,
            #con-main-container .con-right-section {
                padding: 20px;
            }

            .conmap-location-item {
                flex: 1 1 calc(50% - 24px);
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .mobile-menu-btn {
                display: block;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: linear-gradient(135deg, #1e3a8a, #0369a1);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                z-index: 1000;
            }

            .nav.active {
                right: 0;
            }

            .header {
                flex-direction: row;
                padding: 15px 20px;
                margin-bottom: 25px;
            }

            .logo {
                font-size: 28px;
            }

            .logo small {
                font-size: 12px;
            }

            .search-call {
                display: none;
            }

            .search-container {
                display: none;
            }

            .service-header {
                height: 350px;
                margin-bottom: 30px;
            }

            .service-header h1 {
                font-size: 36px;
            }

            .service-header p {
                font-size: 18px;
            }

            .con-html {
                padding: 80px 15px;
            }

            #con-main-container h1 {
                font-size: 2em;
            }

            #con-main-container p,
            #con-main-container input,
            #con-main-container textarea,
            #con-main-container button {
                font-size: 1em;
            }

            .conmap-title {
                font-size: 28px;
            }

            .conmap-location-title,
            .conmap-location-list-title {
                font-size: 24px;
            }

            .conmap-location-grid {
                flex-direction: column;
            }

            .conmap-location-item {
                flex: 1 1 100%;
            }

            .side-icons {
                right: 15px;
            }

            .side-icons a {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .con-html {
                padding: 60px 10px;
            }

            #con-main-container {
                padding: 30px 15px;
            }

            #con-main-container h1 {
                font-size: 1.7em;
            }

            #con-main-container input,
            #con-main-container textarea {
                padding: 12px;
            }

            #con-main-container button {
                font-size: 1em;
                padding: 12px;
            }

            .conmap-header {
                padding-bottom: 20px;
            }

            .conmap-logo {
                font-size: 22px;
            }

            .conmap-title {
                font-size: 24px;
            }

            .conmap-subtitle {
                font-size: 16px;
            }

            .conmap-map-container {
                height: 300px;
            }

            .conmap-location-title,
            .conmap-location-list-title {
                font-size: 20px;
            }

            .conmap-location-item {
                padding: 18px;
            }

            .service-header h1 {
                font-size: 28px;
            }

            .service-header p {
                font-size: 16px;
            }
        }

        /* Mobile menu animation */
        @keyframes slideIn {
            from {
                right: -100%;
            }
            to {
                right: 0;
            }
        }