career section updated

This commit is contained in:
Selvi 2026-03-02 21:56:13 +05:30
parent e8f80b04cd
commit cfa577461e
9 changed files with 25 additions and 22 deletions

View File

@ -5515,7 +5515,7 @@ p.banner-text {
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-position: center; background-position: center;
margin-top: 120px; margin-top: 80px;
} }
.help-form-area input[type="text"], .help-form-area input[type="text"],

View File

@ -22,6 +22,7 @@ import FaqSection from "@/components/home/home-3/FaqSection";
import Header1 from "@/components/layout/Header1"; import Header1 from "@/components/layout/Header1";
import Footer1 from "@/components/layout/Footer1"; import Footer1 from "@/components/layout/Footer1";
import OfferSection from "@/components/home/OfferSection"; import OfferSection from "@/components/home/OfferSection";
import WhyChooseSection from "@/components/careers/WhyChooseSection";
export default function Home2() { export default function Home2() {
useEffect(() => { useEffect(() => {
@ -43,8 +44,9 @@ export default function Home2() {
{/* <FeaturesSection /> */} {/* <FeaturesSection /> */}
<About2Section /> <About2Section />
<IconCounterSection /> <IconCounterSection />
<WhyChooseSection />
<HelpFormSection /> <HelpFormSection />
<WhyChooseUs /> {/* <WhyChooseUs /> */}
{/* <ServiceTabSection /> */} {/* <ServiceTabSection /> */}
{/* <OfferSection/> */} {/* <OfferSection/> */}
{/* <TextSliderSection /> */} {/* <TextSliderSection /> */}

View File

@ -5,7 +5,7 @@ import Header1 from "@/components/layout/Header1";
import Footer1 from "@/components/layout/Footer1"; import Footer1 from "@/components/layout/Footer1";
import InnerBanner from "@/components/common/InnerBanner"; import InnerBanner from "@/components/common/InnerBanner";
import AboutOneSection from "@/components/careers/AboutOneSection"; import AboutOneSection from "@/components/careers/AboutOneSection";
import WhyChooseSection from "@/components/careers/WhyChooseSection"; import WhyChooseUs from "@/components/about/WhyChooseUs";
import FaqVideoSection from "@/components/careers/FaqVideoSection"; import FaqVideoSection from "@/components/careers/FaqVideoSection";
import ContactSection from "@/components/careers/ContactSection"; import ContactSection from "@/components/careers/ContactSection";
import ServiceSection from "@/components/careers/ServiceSection"; import ServiceSection from "@/components/careers/ServiceSection";
@ -28,12 +28,12 @@ export default function CareersPage() {
bgImage="/assets/img-app/bg/hero-bg2.png" bgImage="/assets/img-app/bg/hero-bg2.png"
/> />
<AboutOneSection /> <AboutOneSection />
<WhyChooseSection /> <WhyChooseUs />
<FaqVideoSection /> <FaqVideoSection />
<ContactSection /> <ContactSection />
<FeaturesSection/> <FeaturesSection />
<ServiceSection /> <ServiceSection />
<WorkProcessSection /> {/* <WorkProcessSection /> */}
</main> </main>
<Footer1 /> <Footer1 />
</> </>

View File

@ -1154,7 +1154,7 @@ body {
} }
.about-one.section-space { .about-one.section-space {
padding-top: 80px; padding-top: 180px;
} }
/* dark texture bg */ /* dark texture bg */
@ -1257,11 +1257,11 @@ body {
/* Big gradient circle behind content */ /* Big gradient circle behind content */
.about-one__wrapper__bg__overlay { .about-one__wrapper__bg__overlay {
position: absolute; position: absolute;
left: -280px; left: -310px;
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
width: 950px; width: 900px;
height: 950px; height: 900px;
border-radius: 50%; border-radius: 50%;
background: linear-gradient(145deg, var(--getizy-base, #3779b9) 0%, var(--getizy-base-two, #FB8459) 100%); background: linear-gradient(145deg, var(--getizy-base, #3779b9) 0%, var(--getizy-base-two, #FB8459) 100%);
z-index: -1; z-index: -1;
@ -1271,10 +1271,10 @@ body {
.about-one__wrapper__bg__overlay::after { .about-one__wrapper__bg__overlay::after {
content: ""; content: "";
position: absolute; position: absolute;
top: 26px; top: 30px;
left: 47px; left: 30px;
width: 862px; width: 840px;
height: 862px; height: 840px;
border-radius: 50%; border-radius: 50%;
background-color: transparent; background-color: transparent;
border: 2px solid var(--getizy-secondary, #222230); border: 2px solid var(--getizy-secondary, #222230);
@ -1295,6 +1295,7 @@ body {
position: relative; position: relative;
z-index: 11; z-index: 11;
padding-top: 50px; padding-top: 50px;
left: -20px;
/* padding-left: 20px; */ /* padding-left: 20px; */
/* Added slight padding for better alignment with the circle */ /* Added slight padding for better alignment with the circle */
} }

View File

@ -90,7 +90,7 @@ const AboutOneSection = () => {
About us About us
</h6> </h6>
<h2 className="sec-title__title"> <h2 className="sec-title__title">
Discover the World Marketing Agency Discover the Marketing Agency
</h2> </h2>
</div> </div>
<div className="about-one__content__desc wow" data-wow-delay="400ms" style={{ visibility: "hidden" }}> <div className="about-one__content__desc wow" data-wow-delay="400ms" style={{ visibility: "hidden" }}>

View File

@ -1,7 +1,7 @@
import { features2 } from "@/utils/data"; import { features2 } from "@/utils/data";
const FeaturesSection2 = () => ( const FeaturesSection2 = () => (
<section className="features-section pt-80 pb-80 bg-color-1 p-relative mb-120"> <section className="features-section pt-80 pb-80 bg-color-1 p-relative">
<div className="bg-shape-1" style={{ backgroundImage: "url(/assets/imgs/shapes/shape-27.png)" }}></div> <div className="bg-shape-1" style={{ backgroundImage: "url(/assets/imgs/shapes/shape-27.png)" }}></div>
<div className="bg-shape-2" style={{ backgroundImage: "url(/assets/imgs/shapes/shape-28.png)" }}></div> <div className="bg-shape-2" style={{ backgroundImage: "url(/assets/imgs/shapes/shape-28.png)" }}></div>
<div className="small-container"> <div className="small-container">

View File

@ -1,6 +1,6 @@
const IconCounterSection = () => { const IconCounterSection = () => {
return ( return (
<section className="icon-box-counter-section section-space"> <section className="icon-box-counter-section section-space pt-0">
<div className="small-container"> <div className="small-container">
<div className="row g-4"> <div className="row g-4">
{[ {[

View File

@ -1,7 +1,7 @@
import React from "react"; import React from "react";
const WorkProcessSection = () => ( const WorkProcessSection = () => (
<section className="work-process-section section-space p-relative" style={{ backgroundImage: "url(/assets/imgs/bg/process-bg.png)" }}> <section className="work-process-section section-space p-relative" style={{ backgroundImage: "url(/assets/imgs/bg/process-bg.png)", margin:'80px 0px' }}>
<div className="shape-1" style={{ backgroundImage: "url(/assets/imgs/bg/line.png)" }}></div> <div className="shape-1" style={{ backgroundImage: "url(/assets/imgs/bg/line.png)" }}></div>
<div className="small-container"> <div className="small-container">
<div className="title-box text-center mb-60 wow fadeInLeft" data-wow-delay=".5s"> <div className="title-box text-center mb-60 wow fadeInLeft" data-wow-delay=".5s">

View File

@ -87,10 +87,10 @@ const AboutService = () => {
padding: 60px 0; padding: 60px 0;
} }
} }
.about-image-stack { // .about-image-stack {
padding-top: 50px; // padding-top: 50px;
padding-left: 30px; // padding-left: 30px;
} // }
.experience-box { .experience-box {
position: absolute; position: absolute;
top: 0; top: 0;