/*Importing Goggle Fonts */

*{
    margin:0;
    padding:0;
    box-sizing: border-box; 

}
:root{

     /*Colors */
     --button-color:#CC9955;
     --light-black-color:#333333;
     --black-color:#000000;
     --background-color:#071020;
    --yellow-color:#FEC006;
    --white-color:#FFFFFF;


   /* Font-Family */
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-secondary: 'Fira Sans', sans-serif;
  --font-accent: 'Cutive', serif;


    /* Font sizes in px */
    --font-size-t: 12px;   /* tiny text, captions, meta info */
    --font-size-s: 14px;   /* small text, nav links */
    --font-size-n: 16px;   /* normal body text */
    --font-size-m: 18px;   /* medium text */
    --font-size-1: 24px;   /* h3 or small section heading */
    --font-size-2: 28px;   /* h2 */
    --font-size-3: 32px;   /* h1 */
    --font-size-x1: 36px;  /* large h1 / hero */
    --font-size-xx1: 48px; /* extra large headings */
    --font-size-x2: 50px;  /* extra large headings */

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 900;


    /*Border radius*/
    --border-radius-s:8px;
    --border-radius-m:30px;
    --boder-radius-circle:50%;


    /*site max width */
    --site-max-width:1300px

}


/*Styling for the whole site*/
ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
html{
    scroll-behavior: smooth;
}
.section-content{
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1300px;
}

/*Styling for the whole site*/
ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
html{
    scroll-behavior: smooth;
}
.section-content{
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1300px;
}


/*Header / Navbar Styling */
header .navbar{
    display: flex;
    justify-content: space-between;
    padding:20px;
    align-items: center;
}
header{
    position:fixed;
    width:100%;
    top:0;
    z-index:5;
    align-items: center;
    background-color:var(--white-color)
}
.navbar .nav-menu{
    display: flex;
    gap:30px;
    align-items: center;
}
.nav-logo{
    display: flex;
    align-items: center;
}
.nav-logo .logo-image{
    width: 60px;
}
.navbar .nav-menu .nav-items .nav-link{
    padding: 10px;
    color:var(--black-color);
    font-family:var(--font-primary);
    font-weight:var(--font-weight-medium);
    font-size:var(--font-size-s);
}
.navbar .nav-logo .logo-text .logo-title{
        color:var(--light-black-color);
    font-family:var(--font-primary);
    font-weight:var(--font-weight-semibold);
    font-size:var(--font-size-m);
}
.navbar .nav-logo .logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar .nav-logo .logo-text .logo-subtitle {
    color: var(--light-black-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-t);
    padding-left: 20px;
    font-weight: var(--font-weight-medium);
}


.navbar .nav-menu .nav-items .nav-link {
    position: relative;
}

.navbar .nav-menu .nav-items .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--button-color);
    transition: width 0.4s ease;
}

.navbar .nav-menu .nav-items .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-menu .nav-items .nav-button {
    padding: 10px 24px;
    background-color: var(--button-color);
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-medium);
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .nav-menu .nav-items .nav-button:hover {
    background-color: var(--white-color);
    color: var(--button-color);
    outline: 2px solid var(--button-color);
}

.hero-section {
    min-height: 100vh;
    background-image:url(../images/hero-section-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}



.hero-section .section-content {
    position: relative;
    z-index: 1;
    display: flex;
    text-align: center;
    width: 100%;
}

.hero-section .hero-details {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--white-color);
}

.hero-section .hero-details .subtitle {
    font-size: var(--font-size-m);
    font-family: var(--font-heading);
   text-align: center;
   font-size: var(--font-size-x1);

}

.hero-section .hero-details .button-get-started {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--button-color);
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-s);
    transition: background-color 0.3s ease;
}

.hero-section .hero-details .button-get-started:hover {
    background-color: var(--white-color);
    color: var(--button-color);
}

/*About Us Section Styling */
.about-section {
    padding: 100px 0;
    background-color: var(--background-color);
    color: var(--white-color);
}
.about-section .about-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.about-section .about-details .subtitle{
  font-size:var(--font-size-x2);
  font-family:var(--font-secondary);
  font-weight:var(--font-weight-bold);
}

.about-section .about-details .about-text{
    font-size:var(--font-size-n);
    text-align: center;
    font-weight:var(--font-weight-normal);
    font-family:var(--font-heading);
    line-height: 1.8;
}
.about-section .about-details .about-us-container .about-us-items{ 
    display: flex;
    gap: 50px;
    justify-content: center;
}
.about-section .about-us-container .about-us-items .about-us-text {
    font-size: var(--font-size-n);
    text-align: center;
    font-family: var(--font-heading);
    color: var(--white-color);
    padding: 24px 20px;
    border-radius: var(--border-radius-s);
    flex: 1;
    font-weight:var(--font-weight-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-section .about-us-container .about-us-items .about-us-text:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
     background: linear-gradient(180deg, #056800, #071020);
}

/*Our Main Goals Section Styling */
.goals-section {
    background-image: url(../images/goals-bg.jpg);
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.goals-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0 , 0, 0, 0.8);
    z-index: 0;
}

.goals-section .section-content {
    position: relative;
    z-index: 1;
    color: var(--white-color);
    padding: 100px 0;
}

.goals-section .goals-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding:0 160px;
}

.goals-section .subtitle {
    font-size: var(--font-size-x2);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 60px;
}

.container-one {
    display: flex;
    flex-direction: row;
    gap: 20px;  
}

.container-one .goals-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: var(--font-size-n);
    font-weight: var(--font-weight-normal);
    line-height: 1.8;
    color: var(--white-color);
}

.goal-list-container {
    flex: 1;
}

.goal-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: 20px;
    row-gap: 2px;
}

.goal-items {
    font-family: var(--font-heading);
    font-size: var(--font-size-n);
    font-weight: var(--font-weight-normal);
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-bottom: 1px solid var(--white-color);
    padding-bottom: 8px;
}

.goal-items:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
}

.goal-items i {
    color: var(--yellow-color);
    font-size: var(--font-size-1);
}

/*Our Work in Action Section Styling */
.work-section {
    padding: 100px 0;
    background-color: var(--background-color);
    color: var(--white-color);
}

/*Work Section Styling */
.work-section {
    padding: 100px 0;
    background-color: var(--background-color);
    color: var(--white-color);
}

.work-container {
    display: flex;
    gap: 24px;
}

.work-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.work-items .work-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-s);
}

.work-items .work-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-1);
    font-weight: var(--font-weight-semibold);
}

.work-items .work-description {
    font-family: var(--font-heading);
    font-size: var(--font-size-n);
    font-weight: var(--font-weight-normal);
}

.work-container-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    margin-top: 40px;
}

.work-container-two .work-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-s);
}
.work-container-two .work-image-two {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-s);
    cursor: pointer;
}

.work-container-two .work-image-two :hover{
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}