/* fonts here */

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Regular.woff2') format('woff2'),
        url('../fonts/Gantari-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-SemiBold.woff2') format('woff2'),
        url('../fonts/Gantari-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Medium.woff2') format('woff2'),
        url('../fonts/Gantari-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Light.woff2') format('woff2'),
        url('../fonts/Gantari-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Black.woff2') format('woff2'),
        url('../fonts/Gantari-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Bold.woff2') format('woff2'),
        url('../fonts/Gantari-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* fonts here */






/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gantari';
}

body,
html {
    height: 100%;
    background: #0F0F0F;
    overflow-x: hidden;
    color: #ffffff;
}

/* Ensure all content is visible by default */
* {
    visibility: visible !important;
}

/* Override any hidden elements */
.hidden, [style*="display: none"], [style*="visibility: hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hero Section - Background Image */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Background Image with Opacity */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../images/bg-pc.png');
    /* Your background image */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    /* Set the desired opacity for the background image */
    z-index: 1;
    /* Place it behind the content */
}

/* Header Section */
.header {
    width: 100%;
    padding: 10px 5%;
    position: relative;
    /* Fixed header */
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

/* Header Row for Logo and Buttons */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo img {
    display: none;
}

/* Login Button */
.auth-buttons .login_btn {
    padding: 10px 20px;
    border: 2px solid #ff5600;
    /* Border with orange color */
    background-color: transparent;
    /* Transparent background */
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    /* Pointer on hover */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition for hover effects */
    color: white;
    /* Text color */
    margin-left: 10px;
    /* Spacing between buttons */
    font-family: "Gantari", sans-serif;
    /* Custom font */
}
.auth-buttons .login_btn:hover {
	background: #ff5600;
}
/* Register Button */
.auth-buttons .register_btn {
    padding: 10px 20px;
    background-color: transparent;
    /* Transparent background */
    border: none;
    /* No border */
    border-radius: 5px;
    /* Rounded corners for consistency */
    cursor: pointer;
    /* Pointer on hover */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition for hover effects */
    color: white;
    /* Text color */
    margin-left: 10px;
    /* Spacing between buttons */
    font-family: "Gantari", sans-serif;
    /* Custom font */
    text-decoration: none;
    /* Remove underline */
}

/* Navigation Menu */
.nav-menu {
    width: 100%;
    display: flex;
    /* Slight transparent black background */
    font-family: "Gantari";
}

.nav-menu a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: #ff5600;
}

/* Content Section */
.content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 2;
    /* Above the background image */
    max-width: 50%;
    /* Restrict content width */
    padding: 20px;
    font-family: "Gantari";
}

.content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    /* Gradient from white to orange */
    -webkit-background-clip: text;
    color: transparent;
    max-width: 500px;
    font-weight: 500;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.content .btn {
    padding: 10px 20px;
    border: 2px solid #ff5600;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    color: white;
    font-family: "Gantari";
}
.content .btn:hover {
	background: #ff5600;
}
/* Hamburger Icon (for mobile screens) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.nav-toggle .bar {
    height: 4px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* About Us Section */
.about_us_section {
    padding: 80px 0;
    color: #ffffff;
}

.about_us_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about_us_header {
    text-align: center;
    margin-bottom: 60px;
}

.about_us_header h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.about_us_header p {
    font-size: 1.3rem;
    color: #b8b8b8;
    font-weight: 400;
}

.about_us_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about_us_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_us_image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about_us_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about_us_text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 20px;
}

.about_us_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about_feature {
    background: rgba(141, 141, 141, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.about_feature strong {
    font-size: 1.1rem;
    color: #ff5600;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.about_feature p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

/* About Page Styles */
.about_overview {
    padding: 80px 0;
    color: #ffffff;
}

.about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about_content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.about_content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 25px;
}

.about_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about_stats .stat_item {
    background: rgba(141, 141, 141, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_stats .stat_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.about_stats .stat_item h3 {
    font-size: 2.5rem;
    color: #ff5600;
    margin-bottom: 10px;
    font-weight: 700;
}

.about_stats .stat_item p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Mission Section */
.mission_section {
    padding: 80px 0;
    background: #0F0F0F;
}

.mission_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission_card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    border: 1px solid rgba(255, 86, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 86, 0, 0.3);
}

.mission_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mission_card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission_card p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why_choose_section {
    padding: 80px 0;
    color: #ffffff;
}

.section_header {
    text-align: center;
    margin-bottom: 60px;
}

.section_header h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.section_header p {
    font-size: 1.3rem;
    color: #b8b8b8;
    font-weight: 400;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature_item {
    background: rgba(141, 141, 141, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.feature_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.feature_item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature_item p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team_section {
    padding: 80px 0;
    background: #0F0F0F;
}

.commitment_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.commitment_item {
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    border: 1px solid rgba(255, 86, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.commitment_item h4 {
    font-size: 1.5rem;
    color: #ff5600;
    margin-bottom: 20px;
    font-weight: 600;
}

.commitment_item p {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1a1a1a 100%);
    text-align: center;
}

.cta_content h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.cta_content p {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 40px;
}

.cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 86, 0, 0.4);
    color: white;
}

.btn_secondary {
    padding: 15px 30px;
    border: 2px solid #ff5600;
    background: transparent;
    color: #ff5600;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn_secondary:hover {
    background: #ff5600;
    color: white;
    transform: translateY(-2px);
}

/* Plans Page Styles */
.plans_overview {
    padding: 80px 0;
    color: #ffffff;
}

.plans_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plans_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.plan_card {
    background: rgba(141, 141, 141, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 86, 0, 0.3);
}

.plan_card.featured {
    border: 2px solid #ff5600;
    transform: scale(1.05);
}

.plan_card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan_card.premium {
    border: 2px solid #666;
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.plan_card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(102, 102, 102, 0.2);
}

.plan_badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff5600, #ff8800);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan_badge.premium_badge {
    background: linear-gradient(135deg, #666, #888);
}

.plan_header h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan_return {
    margin-bottom: 30px;
}

.return_percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff5600;
    display: block;
    line-height: 1;
}

.return_frequency {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-top: 5px;
    display: block;
}

.plan_investment {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment_range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.min_investment,
.max_investment {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.separator {
    color: #b8b8b8;
    font-size: 1rem;
}

.investment_duration {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 500;
}

.plan_capital_back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.plan_capital_back i {
    color: #fff;
    font-size: 1.2rem;
}

.plan_capital_back span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.plan_features {
    margin-bottom: 40px;
}

.plan_features .feature_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
}

.plan_features .feature_item i {
    color: #ff5600;
    margin-right: 12px;
    font-size: 1.1rem;
}

.plan_features .feature_item span {
    color: #e0e0e0;
    font-size: 1rem;
}

.plan_action {
    margin-top: auto;
}

.btn_plan {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 86, 0, 0.2);
}

.btn_plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 86, 0, 0.3);
    color: white;
}

/* Features Comparison Section */
.features_comparison {
    padding: 80px 0;
    background: #0F0F0F;
}

.comparison_table {
    background: rgba(141, 141, 141, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
}

.comparison_header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    color: white;
    font-weight: 600;
}

.comparison_row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison_row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison_header > div,
.comparison_row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_name {
    text-align: left;
    justify-content: flex-start !important;
    color: #ffffff;
    font-weight: 500;
}

.plan_name {
    color: #ff5600;
    font-weight: 600;
}

.plan_value {
    color: #b8b8b8;
}

/* Benefits Section */
.benefits_section {
    padding: 80px 0;
    color: #ffffff;
}

.benefits_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit_item {
    text-align: center;
    padding: 30px;
    background: rgba(141, 141, 141, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.benefit_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.benefit_item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit_item p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq_section {
    padding: 80px 0;
    background: #0F0F0F;
}

.faq_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.faq_item {
    background: rgba(141, 141, 141, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq_question {
    padding: 20px;
    background: rgba(255, 86, 0, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq_question:hover {
    background: rgba(255, 86, 0, 0.2);
}

.faq_question h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.faq_question i {
    color: #ff5600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_question i {
    transform: rotate(45deg);
}

.faq_answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq_item.active .faq_answer {
    padding: 20px;
    max-height: 200px;
}

.faq_answer p {
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact_info_section {
    padding: 80px 0;
    color: #ffffff;
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_methods_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact_method {
    text-align: center;
    padding: 40px 30px;
    background: rgba(141, 141, 141, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 86, 0, 0.3);
}

.contact_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.contact_method h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact_method p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_details span {
    color: #ff5600;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact_form_section {
    padding: 80px 0;
    background: #0F0F0F;
}

.contact_form_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form_info h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.form_info p {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form_benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form_benefits .benefit_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form_benefits .benefit_item i {
    color: #ff5600;
    font-size: 1.1rem;
}

.form_benefits .benefit_item span {
    color: #e0e0e0;
    font-size: 1rem;
}

.contact_form {
    background: rgba(141, 141, 141, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form_group {
    margin-bottom: 25px;
}

.form_group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #ff5600;
    box-shadow: 0 0 0 2px rgba(255, 86, 0, 0.2);
}

.form_group input::placeholder,
.form_group textarea::placeholder {
    color: #888;
}

.checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox_group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox_group label {
    margin: 0;
    font-size: 0.95rem;
    color: #b8b8b8;
    line-height: 1.4;
}

.btn_submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 86, 0, 0.4);
}

/* Office Information Section */
.office_info_section {
    padding: 80px 0;
    color: #ffffff;
}

.office_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.office_info {
    text-align: center;
    padding: 40px 30px;
    background: rgba(141, 141, 141, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office_info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 86, 0, 0.2);
}

.office_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff5600, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.office_info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.office_details p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.office_details p strong {
    color: #ff5600;
    font-weight: 600;
}

.part_two .second_content {
    font-family: "Gantari";
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    font-style: normal;
    text-align: center;
    color: #dedede;
    background-color: #25272C;
    padding: 25px 0;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal-width columns */
    gap: 20px;
    /* Space between columns */
}

.column {
    padding: 20px;
    color: white;
    padding-left: 50px;
    padding-right: 50px;
}

.column #star_icon {
    width: 15px;
    height: 15px;
}

.column p {
    padding-top: 20px;
    color: #b8b8b8;
}

#green_star {
    display: flex;
    justify-content: center;
}

#green_star button {
    padding: 15px 20px;
    border: 3px solid rgb(129, 212, 4);
    font-weight: bold;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#green_star button img #green_star_icon {
    width: 5px;
    height: 10px;
}


.part_four .part_four_content {
    background: rgba(141, 141, 141, 0.5);
    color: #f1f1f1;
    width: 400px;
    padding: 30px;
    border-radius: 45px;
    margin-left: 700px;
    margin-top: 15px;
    backdrop-filter: blur(20px);
}


#part_five_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    padding-top: 140px;
}

#part_five_column {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7), -4px -4px 10px rgba(60, 60, 60, 0.3);
    padding: 20px;
    color: white;
    border-radius: 56px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #202020, #0f0f0f);
    position: relative;
}

#part_five_column:hover {
    transform: translateY(-5px);
}

#part_five_column strong {
    font-size: 1.5rem;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

#part_five_column p {
    padding-top: 10px;
    font-size: 1rem;
    color: #b8b8b8;
}


.part_six {
    padding: 80px;

}

.part_six h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff, #ff5600);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.part_six p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b8b8b8;
    text-align: center;
}

/* Video Section */
.video-section {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

video {
    width: 100%;
    height: auto;
    border: 2px solid #ff5600;
    border-radius: 10px;
}

#part_eight {
    padding: 50px 20px;
    color: white;
    text-align: center;
}

#part_eight_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 56px;
    padding-top: 50px;
    background: linear-gradient(135deg, #0F0F0F 0%, #6b2a09 80%, #fc5500 100%);
}

.part_eight_columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.part_eight_column {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.button-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px 0;
}

#part_eight_btn {
    padding: 15px 25px;
    margin: 10px 0;
    border: none;
    background-color: #ff6600;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;
    z-index: 1;
    width: 100%;
    border: 2px solid transparent;
}

#part_eight_btn:hover {
    background-color: transparent;
    border: 2px solid #FF5600;
}

.overlay-img {
    position: absolute;
    top: 10px;
    left: 100%;
    transform: translateX(-50%);
    width: 70px;
    z-index: 2;
}
.part_eight_column p {
    font-size: 1rem;
    color: #eaeaea;
    margin-top: 10px;
}

.part_nine {
    padding: 30px;
    text-align: center;
}

.part_nine p {
    color: #b8b8b8;
    text-align: center;
    font-size: 20px;
}

.part_nine .part_nine_btn {
    padding: 10px 20px;
    border: 2px solid #ff5600;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    color: white;
    font-family: "Gantari";
}

.part_nine .part_nine_btn:hover {
    background: #FF5600;
}

footer.footer {
    color: #fff;
    padding: 5px;
    text-align: center;
    background: #000;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-row-message {
   
    padding: 20px 50px 50px 50px;
    font-size: 12px;
}

.logo img {
    width: 150px;
    height: auto;
    margin-left: 20px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6600;
}

html {
    scroll-behavior: smooth;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: rgb(59, 59, 59);
        width: 200px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hamburger {
        display: block;
    }

    .nav-menu.active {
        display: flex;
    }

    .content h1 {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .hero {
        height: 100vh;
    }

    .header-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .content {
        max-width: 50%;
        padding: 20px;
    }

    .container {
        grid-template-columns: repeat(4, 1fr);
    }

    #part_five_container {
        grid-template-columns: repeat(4, 1fr);
    }

    .video-section {
        max-width: 1200px;
    }

    .part_eight_columns {
        flex-direction: row;
    }

    #part_eight_btn {
        width: auto;
    }
}

@media screen and (max-width: 1023px) {
    .hero {
        height: 80vh;
    }

    .content {
        max-width: 90%;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .container {
        grid-template-columns: repeat(1, 1fr);
    }

    #part_five_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .video-section {
        max-width: 100%;
    }

    #part_eight_btn {
        width: 100%;
    }

    .part_eight_columns {
        flex-direction: column;
        gap: 10px;
    }
}













/* fixing css */

.part_three {
    padding: 80px 0;
    padding-bottom: 120px;
    position: relative;
    z-index: 9;
}

.section__bg::before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.part_four {
    position: relative;
    z-index: 9;
}

.part__content-text {
    position: absolute;
    right: 15%;
    top: 56%;
    transform: translateY(-50%);
}

.part__fout-image {
    max-height: 1080px;
}

.part__fout-image img {
    width: 100%;
}
#part_five_container {
	max-width: 1730px;
	margin: auto;
}
.part__five-layer {
	position: absolute;
	width: 80%;
	left: 25px;
}
.text {
	position: relative;
	z-index: 9;
}
.part_two.mobile {
	display: none;
}
.part_two.mobile span {
	font-size: 12px;
	display: block;
}
.part_three-active.mobile {
	display: none;
}
.flex-img {
	display: flex;
	gap: 8px;
	margin-top: 15px;
}
.box, .box1, .box2, .box3, .box4 {
    opacity: 1;
    transform: translateY(0); /* Starting position */
  }

/* fixing css */




#offcanvas .auth-buttons {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  #offcanvas .auth-buttons .register_btn {
    margin: 0;
  }

#openOffcanvas {
	background: transparent;
	color: #fff;
	border: none;
	font-size: 25px;
}
.offcanvas {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #333;
    color: white;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  }
.offcanvas-open{
    display: none;
}
  .offcanvas.open {
    left: 0;
  }

  .offcanvas-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 100%;
    justify-content: end;
    display: flex;
    padding: 10px;
  }

  .offcanvas nav ul {
    list-style: none;
    padding: 0;
    margin: 20px;
  }

  .offcanvas nav ul li {
    margin: 20px 0;
  }

  .offcanvas nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 20px 0;
    transition: .3s;
  }
.offcanvas nav ul li a:hover {
	color: #FF5600;
	padding-left: 15px;
}
  .offcanvas-open {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
  }

/* Enhanced Services Section Styling */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0F0F0F 0%, #1a1a1a 50%, #0F0F0F 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 86, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 86, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ff5600 50%, #ffffff 100%);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}

.services-intro {
  font-size: 1.3rem;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 86, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 86, 0, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 86, 0, 0.2);
  border-color: rgba(255, 86, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff5600, #ff7700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 86, 0, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ff5600;
}

.service-card p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-card ul li {
  color: #e0e0e0;
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff5600;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-card ul li:hover {
  color: #ffffff;
  padding-left: 30px;
}

/* Enhanced Contact Section Styling */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0F0F0F 0%, #1a1a1a 50%, #0F0F0F 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 86, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 86, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ff5600 50%, #ffffff 100%);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 1.3rem;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 15px;
  border: 1px solid rgba(255, 86, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  border-color: rgba(255, 86, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 86, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5600, #ff7700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 86, 0, 0.3);
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-details p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.5;
  margin: 5px 0;
}

.contact-form {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 86, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 86, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Gantari', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff5600;
  background: rgba(255, 86, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 86, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff5600, #ff7700);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Gantari', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 86, 0, 0.3);
  background: linear-gradient(135deg, #ff7700, #ff5600);
}

.contact-hours {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 86, 0, 0.1);
  text-align: center;
}

.contact-hours h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.hours-item {
  padding: 15px;
  background: rgba(255, 86, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 86, 0, 0.1);
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(255, 86, 0, 0.1);
  transform: translateY(-2px);
}

.hours-item strong {
  color: #ff5600;
  font-size: 1.1rem;
}

.hours-item {
  color: #e0e0e0;
  font-size: 1rem;
}

/* Enhanced About Section Styling */
.about-intro {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.part_four_content {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.part_four_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 86, 0, 0.1), transparent);
  transition: left 0.6s;
}

.part_four_content:hover::before {
  left: 100%;
}

.part_four_content:hover {
  transform: translateX(10px);
  background: rgba(141, 141, 141, 0.6);
}

.part_four_content strong {
  color: #ff5600;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.part_four_content:hover strong {
  color: #ffffff;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
}

.contact-item {
  animation: slideInLeft 0.6s ease-out;
}

.contact-form {
  animation: slideInRight 0.6s ease-out;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .services-section h2,
  .contact-section h2 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .services-section,
  .contact-section {
    padding: 60px 15px;
  }
  
  .services-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .contact-form {
    padding: 25px 15px;
  }
}

/* Additional Fine Enhancements */

/* Improved Button Styles */
.btn, .part_nine_btn, .login_btn, .register_btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::before, .part_nine_btn::before, .login_btn::before, .register_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before, .part_nine_btn:hover::before, .login_btn:hover::before, .register_btn:hover::before {
  left: 100%;
}

/* Enhanced Card Hover Effects */
#part_five_column {
  position: relative;
  overflow: hidden;
}

#part_five_column::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 86, 0, 0.1), transparent);
  transition: left 0.6s;
}

#part_five_column:hover::before {
  left: 100%;
}

/* Improved Typography */
h1, h2, h3 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Focus States */
input:focus, select:focus, textarea:focus, button:focus {
  outline: 2px solid #ff5600;
  outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, select, textarea {
  transition: all 0.3s ease;
}

/* Improved Loading States */
.submit-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Enhanced Visual Hierarchy */
.services-section h2, .contact-section h2 {
  position: relative;
  display: inline-block;
}

.services-section h2::after, .contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff5600, #ff7700);
  border-radius: 2px;
}

/* Improved Spacing and Layout */
.container {
  position: relative;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  
  .content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .services-section h2::after, .contact-section h2::after {
    width: 40px;
    height: 2px;
  }
}

/* Performance Optimizations */
.service-card, .contact-item, .part_four_content {
  will-change: transform;
}

/* Improved Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced Visual Feedback */
.service-card:active, .contact-item:active {
  transform: scale(0.98);
}

/* Improved Color Contrast */
.part_four_content p, .service-card p, .contact-details p {
  color: #d0d0d0;
}

/* Enhanced Grid Layouts */
.services-grid, .hours-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* Improved Form Styling */
.form-group input:valid, .form-group select:valid, .form-group textarea:valid {
  border-color: rgba(76, 175, 80, 0.5);
}

.form-group input:invalid:not(:placeholder-shown), 
.form-group select:invalid:not(:placeholder-shown), 
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(244, 67, 54, 0.5);
}

/* Enhanced Visual Effects */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 86, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Improved Section Transitions */
section {
  position: relative;
  z-index: 2;
}

/* Enhanced Footer Styling */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff5600, transparent);
}
