.elementor-139 .elementor-element.elementor-element-fd251b9{--display:flex;--overflow:hidden;}.elementor-139 .elementor-element.elementor-element-fd251b9.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-139 .elementor-element.elementor-element-fd251b9{--width:156.535%;}}/* Start custom CSS for html, class: .elementor-element-336c2d7 */<style>
        * {
            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: #f8f9fa;
            overflow-x: hidden;
        }

        .hero {
            position: relative;
            background: linear-gradient(135deg, #0C1B3A 0%, #1a2d5a 100%);
            color: white;
            padding: 120px 20px;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(220, 165, 74, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 28, 45, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
            background: linear-gradient(135deg, #DCA54A 0%, #ffffff 50%, #DCA54A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        .hero .subtitle {
            font-size: 1.4em;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.3s both;
            color: #DCA54A;
        }

        .hero .tagline {
            font-size: 1.1em;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .decorative-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #DCA54A, #BF1C2D);
            margin: 30px auto;
            border-radius: 2px;
            animation: expandWidth 1s ease 0.9s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 100px; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            background: white;
            margin: 60px 0;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(12, 27, 58, 0.08);
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #DCA54A 0%, #BF1C2D 100%);
        }

        .section h2 {
            color: #0C1B3A;
            font-size: 2.5em;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #DCA54A, #BF1C2D);
            border-radius: 2px;
        }

        .intro-text {
            font-size: 1.2em;
            line-height: 1.9;
            color: #555;
            margin-bottom: 30px;
        }

        .intro-text strong {
            color: #0C1B3A;
            font-weight: 600;
        }

        .highlight-box {
            background: linear-gradient(135deg, #0C1B3A 0%, #1a2d5a 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(12, 27, 58, 0.3);
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(220, 165, 74, 0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .highlight-box-content {
            position: relative;
            z-index: 2;
        }

        .highlight-box h3 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #DCA54A;
        }

        .highlight-box p {
            font-size: 1.2em;
            opacity: 0.95;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(191, 28, 45, 0.1) 100%);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 50px rgba(12, 27, 58, 0.15);
            border-color: #DCA54A;
        }

        .service-card .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            filter: grayscale(0);
            transition: transform 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-card:hover .icon {
            transform: scale(1.2) rotate(5deg);
        }

        .service-card h3 {
            color: #0C1B3A;
            font-size: 1.5em;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            color: #666;
            position: relative;
            z-index: 2;
        }

        .values-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .value-item {
            padding: 35px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(12, 27, 58, 0.08);
            transition: all 0.4s ease;
            border-left: 5px solid #DCA54A;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(220, 165, 74, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30%, -30%);
            transition: all 0.4s ease;
        }

        .value-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(12, 27, 58, 0.15);
            border-left-color: #BF1C2D;
        }

        .value-item:hover::before {
            transform: translate(20%, -20%) scale(1.5);
            background: radial-gradient(circle, rgba(191, 28, 45, 0.15) 0%, transparent 70%);
        }

        .value-item h4 {
            color: #0C1B3A;
            font-size: 1.4em;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .value-item p {
            color: #666;
            position: relative;
            z-index: 2;
        }

        .cta-section {
            background: linear-gradient(135deg, #BF1C2D 0%, #0C1B3A 100%);
            color: white;
            padding: 80px 50px;
            border-radius: 20px;
            text-align: center;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(191, 28, 45, 0.3);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(220, 165, 74, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
            animation: moveBackground 15s ease-in-out infinite;
        }

        @keyframes moveBackground {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10%, 10%); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.8em;
            margin-bottom: 25px;
        }

        .cta-section h2::after {
            display: none;
        }

        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 20px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: #DCA54A;
            color: #0C1B3A;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(220, 165, 74, 0.3);
            margin-top: 15px;
        }

        .cta-button:hover {
            transform: scale(1.08) translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 165, 74, 0.5);
            background: #f0b85e;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }

        .stat-box {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #0C1B3A 0%, #1a2d5a 100%);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease;
            box-shadow: 0 10px 30px rgba(12, 27, 58, 0.2);
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(220, 165, 74, 0.2) 0%, transparent 60%);
            animation: pulse 3s ease-in-out infinite;
        }

        .stat-box:hover {
            transform: scale(1.05);
        }

        .stat-box .number {
            font-size: 3.5em;
            font-weight: bold;
            background: linear-gradient(135deg, #DCA54A 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .stat-box .label {
            font-size: 1.1em;
            color: #ffffff;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        
        
        
        
        .gallery-section {
            background: #f8f9fa;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .gallery-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .image-caption {
            padding: 20px;
            text-align: center;
            font-weight: 600;
            color: #1e3c72;
            font-size: 1em;
        }

        .highlight-box {
        
            color: white;
            padding: 60px 40px;
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .highlight-box-content h3 {
            font-size: 2.2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .highlight-box-content p {
            font-size: 1.3em;
            text-align: center;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            border-color: #667eea;
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #1e3c72;
            font-size: 1.6em;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1em;
        }

        .values-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-item {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid #667eea;
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .value-item h4 {
            color: #1e3c72;
            font-size: 1.4em;
            margin-bottom: 15px;
        }

        .value-item p {
            color: #666;
            line-height: 1.7;
        }
        

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2em;
            }

            .hero .subtitle {
                font-size: 1.1em;
            }

            .section {
                padding: 35px 25px;
            }

            .section h2 {
                font-size: 2em;
            }

            .cta-section {
                padding: 50px 25px;
            }

            .cta-section h2 {
                font-size: 2em;
            }

            .highlight-box {
                padding: 35px 25px;
            }
        }
    </style>/* End custom CSS */