
        .navbar {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0px;
            background: linear-gradient(to right, #ffffff, #f8f9fa);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: #0062cc !important;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            background: #0062cc;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            font-weight: 500;
            color: #1a1a1a !important;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            background-color: #ffa81d42;
            color: black !important;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .quote-btn {
            background: linear-gradient(to right, #ec6806, #ffb42f);
            color: white !important;
            border-radius: 6px;
            padding: 10px 20px !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .quote-btn:hover {
            background: linear-gradient(to right, #004daa, #0062cc);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 98, 204, 0.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }
            
            .nav-link {
                margin: 5px 0;
            }
        }
.gradient-text {
            background: linear-gradient(90deg, #ff4500, #ff8c00, #ff4500);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: gradient-animation 3s linear infinite;
            font-weight: bold;
            text-align: center;
        }
        
.hero_ {
            background: linear-gradient(135deg, rgb(255 119 14 / 62%), rgb(253 177 46 / 33%)), 
                        url('https://static.vecteezy.com/system/resources/previews/019/049/181/non_2x/global-business-logistics-import-export-and-container-cargo-freight-ship-during-loading-at-industrial-port-by-crane-container-handlers-cargo-plane-truck-on-highway-transportation-industry-concept-photo.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
            color: #fff;
            margin-top: 60px;
        }
        
        .hero_::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,128C960,96,1056,96,1152,117.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-position: bottom;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .hero_content {
            position: relative;
            z-index: 2;
        }
        
        .hero_title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hero_subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        .hero_stats {
            background: rgb(0 0 0 / 15%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            margin-top: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero_stat {
            text-align: center;
            padding: 15px;
        }
        
        .hero_stat_number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
        }
        
        .hero_stat_text {
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero_btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-right: 15px;
            margin-bottom: 15px;
        }
        
        .hero_btn_primary {
            background: linear-gradient(135deg, #ff6b00, #ff922b);
            border: none;
        }
        
        .hero_btn_primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        
        .hero_btn_outline {
            border: 2px solid #fff;
            color: #fff;
            background: transparent;
        }
        
        .hero_btn_outline:hover {
            background: #fff;
            color: #0062cc;
            transform: translateY(-3px);
        }
        
        .hero_search {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            padding: 8px;
            margin-top: 30px;
            max-width: 550px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .hero_search_input {
            border: none;
            background: transparent;
            padding: 12px 20px;
            width: 100%;
        }
        
        .hero_search_input:focus {
            outline: none;
            box-shadow: none;
        }
        
        .hero_search_btn {
            background: linear-gradient(135deg, #0062cc, #0095ff);
            border: none;
            color: white;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .hero_search_btn:hover {
            background: linear-gradient(135deg, #004daa, #0062cc);
            transform: translateY(-2px);
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero_animated {
            animation: fadeInUp 1s ease-out forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero_title {
                font-size: 2.8rem;
            }
            
            .hero_subtitle {
                font-size: 1.3rem;
            }
            
            .hero_stat_number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero_title {
                font-size: 2.3rem;
            }
            
            .hero_subtitle {
                font-size: 1.1rem;
            }
            
            .hero_stats {
                padding: 15px;
            }
            
            .hero_stat {
                padding: 10px;
            }
            
            .hero_stat_number {
                font-size: 1.8rem;
            }
            
            .hero_btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero_title {
                font-size: 2rem;
            }
            
            .hero_btn {
                display: block;
                width: 100%;
                margin-right: 0;
            }
            
            .hero_search {
                flex-direction: column;
                border-radius: 15px;
                padding: 15px;
                background: rgba(255, 255, 255, 0.95);
            }
            
            .hero_search_input {
                margin-bottom: 10px;
                border-radius: 10px;
                background: #f8f9fa;
            }
            
            .hero_search_btn {
                width: 100%;
            }
        }

        .ab_body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .ab_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .ab_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #fb9605;
            position: relative;
            padding-bottom: 15px;
        }
        
        .ab_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: orangered;
            border-radius: 2px;
        }
        
        .ab_subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .ab_content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .ab_intro {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid orangered;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .ab_intro_title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fb9605;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .ab_intro_title i {
            font-size: 2rem;
            color: #fb9605;
        }
        
        .ab_intro_text {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .ab_mission_vision {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .ab_card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid orangered;
            transition: all 0.3s ease;
        }
        
        .ab_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .ab_card_title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fb9605;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .ab_card_title i {
            font-size: 1.8rem;
            color: #fb9605;
        }
        
        .ab_card_text {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .ab_highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .ab_highlight_card {
            flex: 1;
            min-width: 200px;
            padding: 25px 20px;
            text-align: center;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-bottom: 4px solid orangered;
        }
        
        .ab_highlight_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .ab_highlight_icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: orangered;
            background: #fb960540;
            border-radius: 50%;
        }
        
        .ab_highlight_number {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fb9605;
        }
        
        .ab_highlight_text {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }
        
        /* Simple animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .ab_animated {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ab_title {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .ab_title {
                font-size: 2rem;
            }
            
            .ab_content, .ab_mission_vision, .ab_highlights {
                flex-direction: column;
            }
            
            .ab_highlight_card {
                min-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .ab_title {
                font-size: 1.8rem;
            }
            
            .ab_subtitle {
                font-size: 1rem;
            }
            
            .ab_intro, .ab_card {
                padding: 20px;
            }
        }

        .ser_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .ser_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #fb9605;
            position: relative;
            padding-bottom: 15px;
        }
        
        .ser_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: orangered;
            border-radius: 2px;
        }
        
        .ser_subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .ser_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .ser_card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .ser_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .ser_card_header {
            padding: 30px 30px 20px;
            text-align: center;
            background: linear-gradient(135deg, #0062cc 0%, #0095ff 100%);
            color: white;
        }
        
        .ser_card_icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
            display: inline-block;
            height: 90px;
            width: 90px;
            line-height: 90px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            text-align: center;
        }
        
        .ser_card_title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .ser_card_body {
            padding: 25px 30px 30px;
            flex-grow: 1;
        }
        
        .ser_card_text {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .ser_features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ser_feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #555;
            font-size: 1rem;
        }
        
        .ser_feature_icon {
            color: #0062cc;
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .ser_card_footer {
            padding: 0 30px 30px;
        }
        
        .ser_btn {
            display: block;
            width: 100%;
            padding: 12px 20px;
            background: #0062cc;
            color: white;
            text-align: center;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .ser_btn:hover {
            background: #004daa;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
        }
        
        /* Different colors for each service card */
        .ser_card:nth-child(2) .ser_card_header {
            background: linear-gradient(135deg, #ff6b00 0%, #ff922b 100%);
        }
        
        .ser_card:nth-child(2) .ser_feature_icon,
        .ser_card:nth-child(2) .ser_btn {
            background: #ff6b00;
        }
        
        .ser_card:nth-child(2) .ser_btn:hover {
            background: #e05a00;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .ser_card:nth-child(3) .ser_card_header {
            background: linear-gradient(135deg, #00b894 0%, #00d68f 100%);
        }
        
        .ser_card:nth-child(3) .ser_feature_icon,
        .ser_card:nth-child(3) .ser_btn {
            background: #00b894;
        }
        
        .ser_card:nth-child(3) .ser_btn:hover {
            background: #009e7d;
            box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
        }
        
        .ser_card:nth-child(4) .ser_card_header {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
        }
        
        .ser_card:nth-child(4) .ser_feature_icon,
        .ser_card:nth-child(4) .ser_btn {
            background: #6c5ce7;
        }
        
        .ser_card:nth-child(4) .ser_btn:hover {
            background: #5649c5;
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
        }
        
        .ser_card:nth-child(5) .ser_card_header {
            background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
        }
        
        .ser_card:nth-child(5) .ser_feature_icon,
        .ser_card:nth-child(5) .ser_btn {
            background: #fdcb6e;
            color: #333;
        }
        
        .ser_card:nth-child(5) .ser_btn:hover {
            background: #fdbd4a;
            box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
        }
        
        .ser_card:nth-child(6) .ser_card_header {
            background: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
        }
        
        .ser_card:nth-child(6) .ser_feature_icon,
        .ser_card:nth-child(6) .ser_btn {
            background: #e84393;
        }
        
        .ser_card:nth-child(6) .ser_btn:hover {
            background: #d63079;
            box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ser_animated {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ser_title {
                font-size: 2.4rem;
            }
            
            .ser_grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .ser_title {
                font-size: 2rem;
            }
            
            .ser_subtitle {
                font-size: 1.1rem;
            }
            
            .ser_grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 576px) {
            .ser_container {
                padding: 60px 15px;
            }
            
            .ser_title {
                font-size: 1.8rem;
            }
            
            .ser_subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .ser_card_header {
                padding: 20px 20px 15px;
            }
            
            .ser_card_body {
                padding: 20px;
            }
            
            .ser_card_footer {
                padding: 0 20px 20px;
            }
        }
 
        .ww_body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .ww_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }
        
        .ww_header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .ww_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #64ffda 0%, #0095ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .ww_title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #64ffda 0%, #0095ff 100%);
            border-radius: 2px;
        }
        
        .ww_subtitle {
            font-size: 1.2rem;
            color: #ccd6f6;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .ww_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .ww_card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .ww_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #64ffda 0%, #0095ff 100%);
        }
        
        .ww_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .ww_icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            background: linear-gradient(135deg, #64ffda 0%, #0095ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-color: rgba(100, 255, 218, 0.1);
            border-radius: 50%;
            position: relative;
        }
        
        .ww_icon::after {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border: 2px solid rgba(100, 255, 218, 0.2);
            border-radius: 50%;
            animation: pulse 3s infinite;
        }
        
        .ww_card_title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .ww_card_text {
            color: #a8b2d1;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .ww_highlight {
            display: inline-block;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 149, 255, 0.1) 100%);
            color: #64ffda;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-top: 20px;
            font-weight: 500;
        }
        
        .ww_stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 80px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .ww_stat {
            text-align: center;
            padding: 0 20px;
        }
        
        .ww_stat_number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #64ffda 0%, #0095ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .ww_stat_text {
            color: #ccd6f6;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }
            100% {
                transform: scale(0.95);
                opacity: 0.7;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ww_animated {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Background Elements */
        .ww_bg_element {
            position: absolute;
            z-index: -1;
        }
        
        .ww_bg_circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(0, 149, 255, 0.05) 100%);
            position: absolute;
            top: -200px;
            right: -200px;
        }
        
        .ww_bg_square {
            width: 300px;
            height: 300px;
            border: 2px solid rgba(255, 107, 0, 0.1);
            position: absolute;
            bottom: -150px;
            left: -150px;
            transform: rotate(45deg);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ww_title {
                font-size: 2.8rem;
            }
            
            .ww_grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .ww_container {
                padding: 80px 20px;
            }
            
            .ww_title {
                font-size: 2.4rem;
            }
            
            .ww_subtitle {
                font-size: 1.1rem;
            }
            
            .ww_header {
                margin-bottom: 60px;
            }
            
            .ww_grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .ww_stats {
                gap: 30px;
            }
            
            .ww_stat {
                flex: 1 0 40%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .ww_title {
                font-size: 2rem;
            }
            
            .ww_subtitle {
                font-size: 1rem;
            }
            
            .ww_card {
                padding: 30px 20px;
            }
            
            .ww_icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .ww_stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .ww_stat {
                flex: 1 0 100%;
            }
        }

        .cts_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .cts_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #fb9605;
            position: relative;
            padding-bottom: 15px;
        }
        
        .cts_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: orangered;
            border-radius: 2px;
        }
        
        .cts_subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .cts_content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .cts_info {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .cts_info_title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #fb9605;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .cts_info_title i {
            font-size: 2rem;
            color: #fb9605;
        }
        
        .cts_contact_item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .cts_contact_icon {
            width: 50px;
            height: 50px;
            background: #fb9605;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .cts_contact_text {
            color: #555;
            font-size: 1.05rem;
        }
        
        .cts_contact_text strong {
            display: block;
            color: #333;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .cts_form {
            flex: 1;
            /* min-width: 300px; */
            padding: 10px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
        }
        
        .cts_form_title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #0062cc;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .cts_form_title i {
            font-size: 2rem;
            color: #0062cc;
        }
        
        .cts_form_group {
            margin-bottom: 20px;
        }
        
        .cts_form_label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
        }
        
        .cts_form_input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .cts_form_input:focus {
            outline: none;
            border-color: #0062cc;
            box-shadow: 0 0 0 3px rgba(0, 98, 204, 0.1);
        }
        
        .cts_form_textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .cts_form_btn {
            background: #0062cc;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .cts_form_btn:hover {
            background: #004daa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 98, 204, 0.2);
        }
        
        .cts_map {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .cts_map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .cts_hours {
            margin-top: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .cts_hours_title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fb9605;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .cts_hours_title i {
            color: #fb9605;
        }
        
        .cts_hours_item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        
        .cts_hours_day {
            font-weight: 500;
            color: #444;
        }
        
        .cts_hours_time {
            color: orangered;
            font-weight: 500;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cts_animated {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .cts_title {
                font-size: 2.4rem;
            }
            
            .cts_content {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .cts_title {
                font-size: 2rem;
            }
            
            .cts_subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }
            
            .cts_info, .cts_form {
                padding: 30px;
            }
            
            .cts_map {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .cts_container {
                padding: 60px 15px;
            }
            
            .cts_title {
                font-size: 1.8rem;
            }
            
            .cts_subtitle {
                font-size: 1rem;
            }
            
            .cts_info, .cts_form {
                padding: 25px 20px;
            }
            
            .cts_info_title, .cts_form_title {
                font-size: 1.5rem;
            }
            
            .cts_contact_icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .cts_contact_text {
                font-size: 1rem;
            }
            
            .cts_map {
                height: 250px;
            }
        }

        .ft_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .ft_main {
            background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
            color: white;
            padding: 70px 0 40px;
        }
        
        .ft_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .ft_brand {
            display: flex;
            flex-direction: column;
        }
        
        .ft_logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ft_logo_icon {
            width: 50px;
            height: 50px;
            background: #0062cc;
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .ft_logo_text {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        .ft_description {
            color: #ccd6f6;
            margin-bottom: 25px;
            line-height: 1.7;
            max-width: 300px;
        }
        
        .ft_social {
            display: flex;
            gap: 15px;
        }
        
        .ft_social_icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .ft_social_icon:hover {
            background: #0062cc;
            transform: translateY(-3px);
        }
        
        .ft_heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .ft_heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #0062cc;
            border-radius: 2px;
        }
        
        .ft_links {
            list-style: none;
            padding: 0;
        }
        
        .ft_link_item {
            margin-bottom: 12px;
        }
        
        .ft_link {
            color: #ccd6f6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .ft_link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .ft_link_icon {
            font-size: 14px;
            color: #0062cc;
        }
        
        .ft_contact_item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #ccd6f6;
        }
        
        .ft_contact_icon {
            font-size: 18px;
            color: #0062cc;
            margin-right: 15px;
            margin-top: 3px;
            min-width: 20px;
        }
        
        .ft_contact_text {
            line-height: 1.6;
        }
        
        .ft_newsletter {
            position: relative;
        }
        
        .ft_newsletter_text {
            color: #ccd6f6;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .ft_newsletter_form {
            display: flex;
            gap: 10px;
        }
        
        .ft_newsletter_input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .ft_newsletter_input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 98, 204, 0.3);
        }
        
        .ft_newsletter_btn {
            background: #0062cc;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ft_newsletter_btn:hover {
            background: #004daa;
        }
        
        .ft_bottom {
            background:rgb(6 21 43);
            padding: 25px 0;
            text-align: center;
        }
        
        .ft_bottom_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .ft_copyright {
            color: #ccd6f6;
        }
        
        .ft_bottom_links {
            display: flex;
            gap: 25px;
        }
        
        .ft_bottom_link {
            color: #ccd6f6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .ft_bottom_link:hover {
            color: white;
        }
        
        .ft_divider {
            color: rgba(255, 255, 255, 0.1);
            margin: 0 5px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ft_grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .ft_main {
                padding: 50px 0 30px;
            }
            
            .ft_grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .ft_bottom_content {
                flex-direction: column;
                text-align: center;
            }
            
            .ft_bottom_links {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .ft_newsletter_form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .ft_main {
                padding: 40px 0 20px;
            }
            
            .ft_heading {
                font-size: 1.3rem;
            }
        }