.hero-section { background-image: url('./src/CustomerPortalDevelopment.png'); color: #1B3160; padding: 100px 30px; /* min-height: 100vh; */ display: flex; align-items: center; background-size: cover; background-repeat: no-repeat; position: relative; } .hero-section img { width: auto; height: 300px; } .benefits-section h2 { color: #222; } .benefits-section .card { border: none; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .benefits-section .card:hover { transform: translateY(-7px); box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12); } .benefits-section h3 { color: #1B3160; /* Bootstrap primary blue */ } .benefits-section .card i { transition: transform 0.3s ease, color 0.3s ease; } .benefits-section .card:hover i { transform: scale(1.2); color: #DC9401 !important; } .benefits-section .bg-back { background-color: #2F2202; padding-top: 20px; padding-bottom: 20px; color: #fff; padding-left: 50px; padding-right: 50px; border-radius: 20px; } .portal_scroll { display: flex; /* height: 100vh; */ margin-top: 20px; align-items: end; padding: 80px 8%; background-color: #fff; } .portal_scroll .left-section { width: 40%; padding: 20px; background-color: #ffffff; position: relative; } .portal_scroll .right-section { width: 60%; padding: 20px; background-color: #ffffff; border-left: 2px solid #dee2e6; overflow-y: auto; max-height: 400px; /* Adjust to show approximately 2 cards */ scrollbar-color: #dc3545 #f8f9fa; /* Red scrollbar for Firefox */ scrollbar-width: thin; } .portal_scroll .right-section::-webkit-scrollbar { width: 8px; } .portal_scroll .right-section::-webkit-scrollbar-track { background: #f8f9fa; } .portal_scroll .right-section::-webkit-scrollbar-thumb { background-color: #dc3545; /* Red scrollbar for Chrome */ border-radius: 4px; } .portal_scroll h1 { color: #000000; font-size: 2rem; font-weight: bold; margin-bottom: 10px; } .portal_scroll p { color: #6c757d; font-size: 1rem; margin-bottom: 20px; } .portal_scroll .btn-custom { background-color: #f08c00; color: #ffffff; border: none; padding: 10px 20px; font-size: 1rem; border-radius: 5px; text-decoration: none; display: inline-block; } .portal_scroll .btn-custom:hover { background-color: #d07000; color: #ffffff; } .portal_scroll .card { border: 1px solid #dee2e6; border-left: 5px solid #f08c00; border-radius: 5px; padding: 15px; margin-bottom: 15px; background-color: #ffffff; width: 100%; height: 200px; /* 👈 default height */ overflow: hidden; /* hide content until expanded */ transition: height 0.4s ease; /* smooth expand */ } .portal_scroll .card.expanded { height: auto; /* when expanded, show full content */ overflow: visible; } .portal_scroll .card h3 { color: #000000; font-size: 1.2rem; margin-bottom: 10px; } .portal_scroll .card p { margin: 0; } .portal_scroll .icon { font-size: 1.5rem; color: #f08c00; margin-right: 10px; } .portal_scroll .fa-plus { color: #E49E10; } .portal_scroll .features { display: none; border-top: 1px solid #eee; padding-top: 15px; animation: fadeIn 0.3s ease-in-out; } .portal_scroll .features ul { padding-left: 20px; margin: 0; } .portal_scroll .features ul li { margin-bottom: 8px; font-size: 0.95rem; color: #444; } .portal_scroll .toggle-icon_3 { color: #E49E10; font-size: 1.5rem; cursor: pointer; transition: transform 0.3s ease, color 0.3s ease; display: inline-block; /* Important for transform */ } .portal_scroll .toggle-icon_3.active { transform: rotate(45deg); color: #d07000; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } } .portal_scroll .card img { width: 40px; /* apni requirement ke hisaab se */ height: 40px; object-fit: contain; /* image ko fit rakhne ke liye */ } .portal_scroll .gaping { padding-left: 10px; } .service-card { background-color: white; border-radius: 1rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); border: none; overflow: hidden; } .image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; padding: 2rem; } .image-wrapper img { width: auto; height: 500px; } .deco-shape { position: absolute; z-index: 1; } .deco-shape-1 { width: 100px; height: 100px; background-color: #0d6efd; /* Bootstrap's primary color */ opacity: 0.2; border-radius: 0.75rem; top: 1rem; left: 1rem; transform: rotate(12deg); } .deco-shape-2 { width: 80px; height: 80px; background-color: #cfe2ff; /* Bootstrap's primary-subtle color */ border-radius: 50%; bottom: 2rem; right: 2rem; } #tab-image { position: relative; z-index: 2; border-radius: 0.75rem; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .content-wrapper { padding: 3rem; } .content-wrapper h1 { color: #2F2202; /* Bootstrap's primary color */ font-weight: 700; font-size: 2rem; } .content-wrapper h2 { color: #212529; /* Bootstrap's dark color */ font-weight: 700; font-size: 1.75rem; } .content-wrapper .intro-text { color: #6c757d; /* Bootstrap's secondary color */ } /* Bootstrap tabs ko customize karna */ .service_page_tabs .nav-tabs { border-bottom: 1px solid #dee2e6; } /* Default state */ .service_page_tabs .nav-tabs .nav-link { border: none; border-bottom: 2px solid transparent; color: #6c757d; font-weight: 500; padding-left: 0; padding-right: 0; margin-right: 2rem; transition: all 0.3s ease; border: none; box-shadow: none; } /* Hover state */ .service_page_tabs .nav-tabs .nav-link:hover { color: #E09A09; border-bottom: 2px solid #E09A09; border: none; box-shadow: none; } /* Active state */ .service_page_tabs .nav-tabs .nav-link.active { color: #E09A09; font-weight: 600; background-color: transparent; border: none; /* Remove all borders */ border-bottom: 2px solid #E09A09 !important; /* Force border bottom */ } .service_page_tabs #tab-content { color: #495057; line-height: 1.7; } :root { --dark-bg: #2F2202; --primary-accent: #E39D0F; --light-text: #f8f9fa; --secondary-text: #fff; --card-bg: #413103; --card-border: #5a4504; } .feature-section { padding: 4rem 1rem; background-color: var(--dark-bg) !important; color: var(--light-text) !important; } .section-title h2 { font-weight: 800; color: var(--light-text) !important; } .section-title p { color: var(--secondary-text) !important; } .nav-pills .nav-link { background-color: var(--card-bg) !important; color: var(--secondary-text) !important; border-radius: 50rem; /* pill shape */ font-weight: 600; padding: 0.75rem 1.5rem; margin: 0.25rem; transition: all 0.3s ease; } .nav-pills .nav-link:hover { background-color: var(--card-border) !important; color: var(--light-text); } .nav-pills .nav-link.active { background-color: var(--primary-accent) !important; color: var(--dark-bg); box-shadow: 0 4px 15px rgba(227, 157, 15, 0.3); } .feature-card { background-color: var(--card-bg) !important; border: 1px solid var(--card-border) !important; border-radius: 1rem; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); } .feature-card .icon { color: var(--primary-accent) !important; margin-bottom: 1rem; } .feature-card h3 { font-weight: 700; color: var(--light-text) !important; } .feature-card p { color: var(--secondary-text) !important; } /* Fade transition for tabs */ .tab-pane { transition: opacity 0.5s ease-in-out; } .feature-card ul.feature-points { list-style-type: disc; padding-left: 1.2rem; margin: 0; } .feature-card ul.feature-points li { color: #ffffff; /* text white */ margin-bottom: 6px; font-size: 15px; line-height: 1.6; } .feature-card ul.feature-points li::marker { color: #E39D0F; /* bullet ka color */ font-size: 18px; /* thoda bada bullet */ } .icon-circle { width: 60px; height: 60px; background-color: #b39ddb; color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; position: absolute; } .icon-circle:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); } .icon-circle:nth-child(2) { top: 50%; left: -30px; transform: translateY(-50%); } .icon-circle:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); } .icon-circle:nth-child(4) { top: 50%; right: -30px; transform: translateY(-50%); } .timeline { border-left: 4px dashed #b39ddb; padding-left: 20px; position: relative; } .timeline-step { margin-bottom: 40px; } .timeline-step::before { content: ''; position: absolute; left: -10px; width: 20px; height: 20px; background-color: white; border: 4px solid #7e57c2; border-radius: 50%; top: 5px; } .main-section { /* padding: 60px; */ padding-bottom: 50px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; background-color: #fff; } .main-section img { width: auto; height: 600px; } .main-section_m { background-color: #fff; } .main-section_m h2 { text-align: center; padding: 60px; } /* RIGHT SIDE */ .right { flex: 1; padding-left: 40px; position: relative; } .timeline-line { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: repeating-linear-gradient(to bottom, #E49E10, #E49E10 10px, transparent 10px, transparent 20px); margin-left: 10px; } .step { position: relative; margin-bottom: 50px; padding-left: 0px; } .step::before { content: ""; position: absolute; left: -36px; top: 5px; width: 16px; height: 16px; background-color: white; border: 4px solid #E49E10; border-radius: 50%; } .step h5 { font-weight: bold; color: #E49E10; } .step p { font-size: 14px; color: #444; } .why-coder-chaps { padding: 60px 0; min-height: 100vh; display: flex; align-items: center; background-color: #2F2202; color: #f0f0f0; } .why-coder-chaps .heading { font-size: 3rem; font-weight: 800; color: #ffffff; line-height: 1.2; } .why-coder-chaps .sub-text { font-size: 1.15rem; color: #c5c5c5; } .why-coder-chaps .feature-card { background-color: rgba(0, 0, 0, 0.2); border: 1px solid #E39D0F; border-radius: 1rem; padding: 1.2rem; /* pehle 2rem tha, ab chhota */ transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .why-coder-chaps .feature-card .icon { font-size: 2rem; /* pehle 2.5rem tha */ color: #E39D0F; margin-bottom: 1rem; } .why-coder-chaps .feature-card h3 { color: #ffffff; font-weight: 700; font-size: 1.25rem; /* thoda compact */ } .why-coder-chaps .feature-card p { color: #c5c5c5; font-size: 0.95rem; line-height: 1.4; } .why-coder-chaps .testimonial-card { background-color: rgba(227, 157, 15, 0.1); border-color: #E39D0F; padding: 1.2rem; /* same padding reduction */ } .why-coder-chaps .testimonial-card .icon { color: #FFC107; font-size: 1.8rem; /* chhota kiya */ } .why-coder-chaps .testimonial-card .testimonial-text { font-style: italic; color: #e0e0e0; font-size: 0.95rem; line-height: 1.4; } .why-coder-chaps .testimonial-card .author { font-weight: 700; color: #ffffff; margin-top: 0.8rem; font-size: 1rem; } /* Related Services Section */ .related-services { padding: 80px 0; background-color: #ffffff; } .section-title { font-weight: 800; color: #2F2202; margin-bottom: 50px; text-align: center; } .service-box { padding: 30px; text-align: center; border: 1px solid #e0e0e0; border-radius: 1rem; height: 100%; transition: all 0.3s ease-in-out; } .service-box:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border-color: #E39D0F; } .service-box h4 { font-size: 1.25rem; font-weight: 700; color: #2F2202; min-height: 56px; /* for consistent height */ display: flex; align-items: center; justify-content: center; }

