*{
    padding: 0%;
    margin: 0%;
}

html , body{
   display: flex;
   justify-content: center;
}


#main{
    width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0%;
    padding: 0%;
}


.firstDiv{
    width: 100%;
    height: 909px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

/* Inside First Div */

.insideFirstDiv{
    height: 909px;
    flex-shrink: 0;
    align-self: stretch;
    background : linear-gradient(261deg , #FFE7EB -0.46%, #FFBFCA 100.67%);
    gap: 38px;
    display: flex;              /* ✅ Add this */
    flex-direction: row;        /* ✅ Arrange boxes side by side */
    align-items: flex-start;
}


/* navbar section */

.navbar{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: self-start;
    position: absolute;
    background: #fff;
    height: 100px;
}


.insideNavbar{
    display: flex;
    height: 100%;
    padding: 0 100px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}


/* logo style  inside navbar*/

#logo{
    width: 231.174px;
    height: 58px;
    aspect-ratio: 231.17/58.00;
}

/* mid content of navbar style */

#midContent{
  display: flex;
  align-items: center;
  gap: 24px;
}

.midContentButton{
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 4px;

    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: #282828;
}


#buttonLogo{
    display: flex;
    margin-right: 100px;
    height: 46px;
    padding: 0px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 30px;
    background: var(--ColorPallet-Primary-primary-500 , #FA1239);
    box-shadow: 0 0 12px 0 rgba(250, 18, 57, 0.58);

    color: #fff;
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    text-transform: capitalize;
}

.firstdivBox1{
    display: flex;
    width: 620px;
    height: 510px;
    flex-direction: column;
    align-items: flex-start;
   
    margin-top: 228px;
    margin-left: 100px;
    gap: 38px;
}


/* large content style box 1 div 1 */

#largeContent{
 width: 100%;
 height: 252px;
 align-self: stretch;

 color: var(--ColorPallet-Neutral-neutral-500, #000);
    font-family: Figtree;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px; /* 121.875% */
    text-transform:capitalize;
}



.storeLine {
  display: inline-block;
  position: relative;
  color: #FA1239;
  font-family: Figtree;
  font-size: 64px;
  font-weight: 700;
  line-height: 85px;
  text-transform: capitalize;
  margin-top: 5px;
}

.storeStroke {
  display: block;
  width: 279px;
  height: 9px;
  margin-top: -10px; /* Adjusts stroke closer to text */
}

.storeStrokeLarge {
  display: block;
  width: 363px;
  height: 9px;
  margin-top: -3px; /* Controls spacing between two strokes */
}

#smallContent{
    color: var(--ColorPallet-Neutral-neutral-500, #000);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 212.5% */
    text-transform:capitalize;

    width: 485px;

}



#firstDivBoxButton{
    display: flex;
    align-items: center;
    gap:24px;
}

.buttonBox{

    display: flex;
    height: 46px;
    padding: 0px 22px;
    justify-content: center;
    align-items: center;
    gap:10px;
}

#one{
    border-radius: 30px;
    border: 1px solid var(--ColorPallet-Primary-primary-500, #FA1239);
    background: #FFF;

    /* ButtonShadow */
    box-shadow: 0 0 12px 0 rgba(250,18,57,0.58);
}


#two{
    border-radius: 30px;
    background: var(--ColorPallet-Primary-primary-500, #FA1239);

    /* ButtonShadow */
    box-shadow: 0 0 12px 0 rgba(250,18,57,0.58);
}


.firstdivBox2 {
    width: 633.874px;
    height: 727.366px;
    flex-shrink: 0;
    margin-right: 40.1px;
    margin-top: 181px;

    position: relative; /* important for absolute children */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* aligns image bottom to circle bottom */
}

/* circles */
#outerEllipse {
    width: 633.874px;
    height: 633.876px;
    border-radius: 50%;
    background: radial-gradient(circle at 55% 45%, #ffe4e9 0%, #ffcbd4 100%);
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative;
    z-index: 1;
}

#innerEllipse {
    width: 476.448px;
    height: 476.449px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #fecdd5 0%, #ffe2e7 100%);
}

/* girl image */
#imageBox {
    width: 506px;
    height: 727px;
    background: url(image/girlImage.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;          /* sits on the bottom edge of box2 */
    right: 60px;        /* adjust this to match your Figma placement */
    z-index: 2;         /* ensures it stays on top of the circles */
}




/* creating and styling rating button */

.rating{
    position: absolute;
    margin-top: 585px;
    margin-left: 729px;
    z-index: 5;
    background-color: red;

    display: inline-flex;
    padding: 20px 15px;
    justify-content: center;
    align-items: center;
    gap:20px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter:blur(45.5px);
}


.ratingNo{
    color: #1CB098;
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform:capitalize;
}

.ratingBox{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

#star{
    display: flex;
}

#star img{
    width: 17.123px;
    height: 16.353px;
}

#starContent{
    color: #000;
    font-family: Figtree;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform:capitalize;
}

/* styleing noOfresume created button */

.resumeCreated{
    margin-top: 734px;
    margin-right: 10.34px;
    margin-left: 1129px;
    position: absolute;
    z-index: 5;

    display: flex;
    width: 270.664px;
    height: 133.427px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink:0;

    border-radius: 10px;
    background:#FFF;
}

#capImage{
    width: 80px;
    height: 80px;
}

#capImage img{
    width: 80px;
    height: 80px;
}


#noOfResumeCreated{
    color: #000;
    font-family: Figtree;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform:capitalize;
    width: 124px;
    align-self: stretch;
}

#contentOfResumeCreated{
    color: #666;
    font-family: Figtree;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform:capitalize;
    width: 124px;
}



/* From here second division styling is started */





.secondDiv{
    height: 708px;
    width: 100%;
    align-self: stretch;
    background-color: #fff;
}


.insideSecondDiv{
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 85px;

    display: flex;
    width: 1255px;
    flex-direction: column;
    align-items: center;
    gap:50px;

}

#secondDivUpper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1240px;
    align-items: center;
    gap: 26px;
    align-self:stretch;
}

#secondDivTitle{
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap:10px;

    border-radius: 6px;
    background: rgba(253, 146, 164,0.30);

    color: #000;
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform:capitalize;
}

#errorMessage{
    color: #000;
    text-align: center;

    align-self: stretch;

/* Typography/H4-26-Semibold */
    font-family: Figtree;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform:capitalize;
}


#secondDivBox{

    display: flex;
    height: 450px;
    align-items: flex-start;
    gap: 20px;

}

.secondDivBoxInside{
    display: flex;
    height: 450px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;

    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.08);
}



.secondDivImageBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    align-self:stretch;
    height: 246px;
    width: 258.75px;
}


.secondDivImage img{
    width: 200px;
    height: 149.024px;
    flex-shrink: 0;
    aspect-ratio: 200.00/149.02;
}

.secondDivBoxTitle{

    align-self: stretch;
    color: var(--ColorPallet-Neutral-neutral-500, #000);

    /* Typography/20-Medium */
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.secondDivBoxContent{
    color: var(--ColorPallet-Neutral-neutral-500, #000);
    width: 258.75px;
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

