/* CSS RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html{
  scroll-behavior: smooth;
}

/* ROOT STYLING */

:root {
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Primary Colors - Deep Navy & Gold (Elegant & Prestigious) */
  --color-primary: #1a2332;        /* Deep navy blue */
  --color-primary-light: #2d3e50;  /* Lighter navy */
  --color-primary-dark: #0f1419;   /* Darker navy */
  
  --color-accent: #c9a961;         /* Elegant gold */
  --color-accent-light: #d4bc7f;   /* Light gold */
  --color-accent-dark: #b8954a;    /* Dark gold */
  
  /* Secondary Colors */
  --color-secondary: #3d5a80;      /* Slate blue */
  --color-secondary-light: #5a7a9f; /* Light slate */
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-light: #f8f9fa;          /* Off-white background */
  --color-gray-100: #e9ecef;       /* Very light gray */
  --color-gray-200: #dee2e6;       /* Light gray */
  --color-gray-300: #ced4da;       /* Medium-light gray */
  --color-gray-400: #adb5bd;       /* Medium gray */
  --color-gray-500: #6c757d;       /* Gray */
  --color-gray-600: #495057;       /* Dark gray */
  --color-gray-700: #343a40;       /* Very dark gray */
  --color-black: #000000;
  
  /* Text Colors */
  --text-primary: #1a2332;         /* Main text (navy) */
  --text-secondary: #495057;       /* Secondary text */
  --text-muted: #6c757d;           /* Muted text */
  --text-light: #adb5bd;           /* Light text */
  --text-white: #ffffff;           /* White text */
  --text-accent: #c9a961;          /* Gold text */
  
  /* Background Colors */
  --bg-primary: #ffffff;           /* Main background */
  --bg-secondary: #f8f9fa;         /* Secondary background */
  --bg-dark: #1a2332;              /* Dark background */
  --bg-accent: #c9a961;            /* Accent background */
  --bg-hover: #f1f3f5;             /* Hover background */
  
  /* Border Colors */
  --border-light: #e9ecef;
  --border-medium: #dee2e6;
  --border-dark: #ced4da;
  --border-accent: #c9a961;
  --border-primary: #1a2332;
  
  /* Shadow Colors */
  --shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.12);
  --shadow-md: 0 4px 6px rgba(26, 35, 50, 0.15);
  --shadow-lg: 0 10px 25px rgba(26, 35, 50, 0.2);
  --shadow-xl: 0 20px 40px rgba(26, 35, 50, 0.25);
  --shadow-accent: 0 4px 12px rgba(201, 169, 97, 0.3);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Button Colors */
  --btn-primary-bg: #1a2332;
  --btn-primary-text: #ffffff;
  --btn-primary-hover: #2d3e50;
  --btn-primary-active: #0f1419;
  --btn-primary-shadow: 0 4px 12px rgba(26, 35, 50, 0.3);
  
  --btn-accent-bg: #c9a961;
  --btn-accent-text: #ffffff;
  --btn-accent-hover: #d4bc7f;
  --btn-accent-active: #b8954a;
  --btn-accent-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
  
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #1a2332;
  --btn-secondary-border: #1a2332;
  --btn-secondary-hover-bg: #1a2332;
  --btn-secondary-hover-text: #ffffff;
  
  --btn-outline-bg: transparent;
  --btn-outline-text: #c9a961;
  --btn-outline-border: #c9a961;
  --btn-outline-hover-bg: #c9a961;
  --btn-outline-hover-text: #ffffff;
  
  /* Highlights & Accents */
  --highlight-primary: #c9a961;
  --highlight-secondary: #3d5a80;
  --accent-underline: #c9a961;
  --selection-bg: #c9a961;
  --selection-text: #ffffff;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-weight: var(--font-weight-bold);
  font-size: 3rem;
}

h2 {
  font-weight: var(--font-weight-semibold);
  font-size: 2.5rem;
}

h3 {
  font-weight: var(--font-weight-semibold);
  font-size: 2rem;
}

p, body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}

body{
  background-color: var(--color-light);

}

/* Text Selection */
::selection {
  background-color: var(--selection-bg);
  color: var(--selection-text);
}

/* Button Styles */
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--btn-primary-shadow);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  background-color: var(--btn-primary-active);
  transform: translateY(0);
}

.btn-accent {
  background-color: var(--btn-accent-bg);
  color: var(--btn-accent-text);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--btn-accent-shadow);
}

.btn-accent:hover {
  background-color: var(--btn-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 2px solid var(--btn-secondary-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
}

.btn-outline {
  background-color: var(--btn-outline-bg);
  color: var(--btn-outline-text);
  border: 2px solid var(--btn-outline-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
}






/* HOME BANNER STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.parallax-container{
    overflow: hidden;
    position: relative;
    height: 91.5vh;

}

.parallax-image{
    position: absolute;
    top: -50%;
    left: 0;
    width:100%;
    height: 150%;
    background-image: url("./public/images/home_banner4.jpg");
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;

}

.content-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
  text-align: center;
  padding: 20px;
}

.content-overlay h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  color: #ffffff;
  /* Multiple layered shadows for maximum visibility */
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    4px 4px 16px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.content-overlay p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  max-width: 700px;
  color: #ffffff;
  /* Strong shadow for readability */
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.9),
    1px 1px 12px rgba(0, 0, 0, 0.7);
}


/* NAV BAR STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */




nav {
  position: sticky;
  top: 0vh;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;                  
  justify-content: space-evenly;   
  align-items: center;            
  background-color: var(--bg-secondary); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 3rem;               
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* Left brand / logo area */
.nav-left {
  flex-shrink: 0;                   /* don't let it shrink */
}

.nav-left a {
  text-decoration: none;
}

.nav-left .brand {
  font-family: var(--font-heading); /* or keep --font-body if preferred */
  font-weight: var(--font-weight-bold);
  font-size: 150%;
  color: var(--text-secondary);                     /* change to var(--text-white) */
  padding: 0;                       /* cleaner look */
}

/* Center menu items */
.nav-center {
  display: flex;
  align-items: center;
  gap: 2.5rem;                 
  margin: 0;                        
  padding: 0 25px;
  list-style: none;
  
}

.nav-center li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 0.8em;
  transition: color var(--transition-base);
}

@media (min-width: 1100px) {
  .nav-center li a {
    font-size:  1.15rem;
  }
}

.nav-center li a:hover,
.nav-center li a:focus {
  color: var(--color-accent);       
}

/* Active state for current section */
.nav-center li a.active {
  color: var(--color-accent);
}

/* Right side – Contact Us */
.nav-right {
  flex-shrink: 0;
  text-align: right;
}

.nav-right span a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 1.15rem;
  
  
}


.btn-outline-nav {
  background-color: var(--btn-outline-bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--btn-outline-border);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}


.btn-outline-nav:hover {
  background-color: var(--btn-outline-hover-bg);
  color: var(--text-white);
}



.burger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  gap:3px;
  padding: 10px 6px;
}

.burger-menu > span {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.burger-menu > span {
  margin: 0;
  padding: 0;
  display: block;
  transition: all 0.3s ease;
}

/* Animation for X state */
.burger-menu.active > span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active > span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active > span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.small-screen-menu{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 8.5vh;
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: var(--radius-md);
}

.small-screen-menu div{
  padding:10px 0;
  width: 100%;
  cursor: pointer;
  text-align: center;
  background: var(--bg-accent);
}

.small-screen-menu div:hover{
  background:var(--bg-hover);
  font-size: 1.05rem;
  text-decoration: underline;
}

.small-screen-menu a{
  text-decoration: none;
  width: 100%;
  color: var(--text-secondary);
}






/* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: green;} */

 #services{
   min-height:100vh;
}

#services h3:first-of-type{
  text-align: center;
  margin-top: 4.5rem;
  margin-bottom: 0px;
  letter-spacing: 0.4rem;
}

#services h2{
  text-align: center;
  font-size: 3.4rem;
  margin-top: 0.2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 80%;
  margin: 0 auto;
  gap: 20px;
}

.services-card{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 70vh;
  min-width: 90%;
  cursor: pointer;
  position: relative;
}

.services-card:nth-of-type(1){
  
    background-image: url("./public/images/engineering_card.jpg");
    background-size: cover;
    background-position: center;
    
    
    
}

.services-card:nth-of-type(2){
    background-image: url("./public/images/architecture_card.jpg");
    background-size: cover;
    background-position: center;
    
}

.services-card:nth-of-type(3){
    background-image: url("./public/images/construction_card.jpg");
    background-size: cover;
    background-position: center;
    
}

#services .services-card h3{
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    4px 4px 16px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    align-self: flex-start;
    margin-top: 1.2rem;
    z-index: 2;
}
}

#services .services-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
 width: 70%;
  margin: 15% auto ;
  text-align: center;
  color: #ffffff;
  z-index: 2;
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.9),
    1px 1px 12px rgba(0, 0, 0, 0.7);
}


.content-overlay-top {
  background-color: hsla(0, 0%, 0%, 0.5);
  position: absolute;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;

  top:0;
  left: 0;
  height: 50%;
  width: 100%;
}

.content-overlay-bottom {
  background-color: hsla(0, 0%, 0%, 0.5);
  position: absolute;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg) ;

  top:50%;
  left: 0;
  height: 50%;
  width: 100%;
}

.content-overlay-top, .content-overlay-bottom{
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.content-overlay-top.active,
.content-overlay-bottom.active {
    transform: scaleX(1);
}

.content-overlay-bottom.active {
    transform: scaleX(1);
    transition-delay: 0.1s;
}

.services-card p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.2s;
}

.services-card p.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgb(71, 17, 195);} */
 .services-card{
  min-width: 40%;

}

#services .services-card h3{
    font-size: 2.0rem;
}
  
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgb(242, 118, 192);} */
 .card-container {
  margin: auto;
  display: flex;
  flex-wrap:nowrap;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
}
   .services-card{
  min-width: 30%;

}

#services .services-card h3{
    font-size: 2.5rem;
}
}

/* ABOUT US SECTION STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: rgba(117, 161, 117, 0.484);} */
    #about-us {
      min-height: 300vh;;
    }   
    #about-us h2{
      width: 75%;
      font-size: 2.8rem;
      margin: 6rem auto
    }
    
    .card-grid-about-us{
  display: grid;
  grid-template-columns: 80%;
  grid-template-rows: 50vh 50vh 100vh 50vh 50vh;
  gap: 9px;
  justify-content: center;
  }

  .about-us-card{
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 1rem;
  }

  .about-us-card:nth-of-type(1){
  background-image: url("./public/images/enduring_design.jpg");
  background-size: cover;
   background-position: center;

}

.about-us-card:nth-of-type(2){
  background-image: url("./public/images/construction.jpg");
  background-size: cover;
   background-position: center;
  
}

.about-us-card:nth-of-type(3){
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem;
}




.about-us-card:nth-of-type(4){
  background-image: url("./public/images/signature_architecture.jpg");
  background-size: cover;
   background-position: center;
   
  
}

.about-us-card:nth-of-type(5){
  width: 100%;
  background-image: url("./public/images/transforming_landscapes.jpg");
  background-size: cover;
   background-position: center;
  
}

/* Style h3 and h4 in all cards EXCEPT the 3rd card */
.about-us-card:not(:nth-of-type(3)) h3,
.about-us-card:not(:nth-of-type(3)) h4 {
  color: #ffffff;
  font-size: 2.5rem;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    4px 4px 16px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.about-us-card:not(:nth-of-type(3)) h4 {
  font-size: 1.4rem;
  margin-top: 0;
}

/* Separate styling for h3 in the 3rd card */
.about-us-card:nth-of-type(3) h3 {
  font-size: 2.5rem;
  font-size: 6vh;
  color: var(--text-primary);
  text-shadow: none; 
} 

/* Separate styling for p in the 3rd card */
.about-us-card:nth-of-type(3) p {
  font-size: 80%;
} 

}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgba(70, 17, 195, 0.245);} */
  #about-us h2{
  width: 60%;
  font-size: 3.5rem;
  margin: 3rem 0 4rem 8rem;
}

.card-grid-about-us{
  grid-template-columns: 40% 40%;
  grid-template-rows: 75vh 75vh 75vh;

  }


.about-us-card:nth-of-type(3){
  padding: 2rem;

}


.about-us-card:nth-of-type(5){
  grid-column: 1/3;

}

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgba(242, 118, 192, 0.355);} */
  #about-us h2{
  width: 60%;
  font-size: 4.0rem;
  margin: 3rem auto 4rem 14rem;
}

.card-grid-about-us{
  grid-template-rows: 100vh 100vh 100vh;

  }


.about-us-card:nth-of-type(3){
  padding: 6rem;
}


}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
 /* body {background-color: rgba(101, 220, 233, 0.268);} */
  #about-us h2{
  width: 50%;
  font-size: 4.5rem;
  margin: 3rem auto 4rem 14rem;
}

.about-us-card:nth-of-type(3){
  padding: 8rem;
}
 } 


/* PAST PROJECTS SECTION STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: rgba(117, 161, 117, 0.484);} */
    #past-projects {
      min-height: 100vh;;
    }   
    #past-projects h2{
      width: 75%;
      font-size: 2.8rem;
      margin: 6rem auto
    }

    .pp-flex-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;

  }

  .pp-card{
    display: grid;
    grid-template-columns:repeat(8,1fr);

    grid-template-rows: repeat(20,1fr);
    border-radius: var(--radius-md);
    height: 20vh;
    width:99%;
    position:relative;
opacity: 0;
  }

  .pp-card.animated {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

  .pp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    pointer-events: none;
    z-index: 0;
  }

  .pp-button {
    position: relative;
    z-index: 1;
  background-color: rgba(201, 169, 97, 0.9); /* Your gold accent */
  grid-column-start: 8;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}


.pp-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pp-button-icon {
  stroke: var(--color-white);
  transition: transform var(--transition-base);
}

.pp-button.active .pp-button-icon {
  transform: rotate(180deg); /* For chevron animation */
}

.pp-details{
  z-index: 1;
  margin: 0 auto;
  grid-area: 10/1/20/9;
  color: var(--text-white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5,1fr);
 
  
}

/* Labels - narrower */
.pp-item:nth-of-type(1){
  grid-area: 2/1/3/2;  /* 1 column */
  padding-left: 15%;
}

.pp-item:nth-of-type(3){
  grid-area: 3/1/4/2;  /* 1 column */
  padding-left: 15%;
}

.pp-item:nth-of-type(5){
  grid-area: 4/1/5/2;  /* 1 column */
  padding-left: 15%;
}

/* Descriptions - wider for text wrapping */
.pp-description:nth-of-type(2){
  grid-area: 2/3/3/7;  /* 5 columns - plenty of room */

}

.pp-description:nth-of-type(4){
  grid-area: 3/3/4/7;  /* 5 columns */
}

.pp-description:nth-of-type(6){
  grid-area: 4/3/5/7;  /* 5 columns */
}

/* All cards start stacked at center (card 3's position) */
@keyframes pp-reveal-1 {
  0% { transform: translateX(200%); opacity: 0;}  /* card 1 starts at card 3, moves left */
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes pp-reveal-2 {
  0% { transform: translateX(100%);opacity: 0; }  /* card 2 starts at card 3, moves left */
  100% { transform: translateX(0);opacity: 1; }
}
@keyframes pp-reveal-3 {
  0% { transform: translateX(0);opacity: 0; }     /* card 3 stays put */
  100% { transform: translateX(0);opacity: 1; }
}
@keyframes pp-reveal-4 {
  0% { transform: translateX(-100%);opacity: 0; } /* card 4 starts at card 3, moves right */
  100% { transform: translateX(0);opacity: 1; }
}
@keyframes pp-reveal-5 {
  0% { transform: translateX(-200%);opacity: 0; } /* card 5 starts at card 3, moves right */
  100% { transform: translateX(0);opacity: 1; }
}

.pp-card:nth-of-type(1).animated { animation-name: pp-reveal-1; }
.pp-card:nth-of-type(2).animated { animation-name: pp-reveal-2; }
.pp-card:nth-of-type(3).animated { animation-name: pp-reveal-3; }
.pp-card:nth-of-type(4).animated { animation-name: pp-reveal-4; }
.pp-card:nth-of-type(5).animated { animation-name: pp-reveal-5; }


  .pp-card.active{
    border: 1px solid black;
    border-radius: var(--radius-md);
    height: 110vh;
    width:99%;
  }

  .pp-card.active::before {
  background-color: rgba(0, 0, 0, 0.2);
}


  .pp-card:nth-of-type(1){
    background-image: url("./public/images/design_1.jpg");
    background-size: cover;
   background-position: center;
  }
  .pp-card:nth-of-type(2){
    background-image: url("./public/images/design_2.jpg");
    background-size: cover;
   background-position: center;
  }
  .pp-card:nth-of-type(3){
    background-image: url("./public/images/design_3.jpg");
    background-size: cover;
   background-position: center;
  }
  .pp-card:nth-of-type(4){
    background-image: url("./public/images/design_4.jpg");
    background-size: cover;
   background-position: center;
  }
  .pp-card:nth-of-type(5){
    background-image: url("./public/images/design_5.jpg");
    background-size: cover;
   background-position: center;
  }
    

}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgba(70, 17, 195, 0.245);} */
  #past-projects h2{
  width: 60%;
  font-size: 3.5rem;
  margin: 3rem 0 4rem 8rem;
}




}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgba(242, 118, 192, 0.355);} */
  #past-projects h2{
  width: 60%;
  font-size: 4.0rem;
  margin: 3rem auto 4rem 14rem;
}

.pp-flex-container{

    flex-direction: row;
    justify-items: center;
    align-items: center;
    width: 83%;
    height: 100vh;
    margin: 0 auto;

  }

  .pp-card{
    height: 90vh;
    width: 20%;
  }

  .pp-card.active{
    width:75%;
    height: 90vh;
  }

}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
 /* body {background-color: rgba(101, 220, 233, 0.268);} */
  #past-projects h2{
  width: 50%;
  font-size: 4.5rem;
  margin: 3rem auto 4rem 14rem;
}

 } 

 /* news SECTION STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: rgba(117, 161, 117, 0.484);} */
    #news {
      min-height: 100vh;;
    }   
    #news h2{
      width: 75%;
      font-size: 2.8rem;
      margin: 6rem auto
    }
    .card-grid-news{
  display: grid;
  grid-template-columns: 80%;
  grid-template-rows: 50vh 50vh 50vh 50vh;
  gap: 9px;
  justify-content: center;
  margin: 0 auto;
  width: 95%;
  }

  .news-card{
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 1rem;
  }

  .news-card:nth-of-type(1){
  padding: 0;
  overflow: hidden;
  position: relative; /* Add this */
}

.news-card:nth-of-type(1) > video{
  position: absolute; /* Add this */
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;  
  border-radius: var(--radius-lg); 
}

.news-card:nth-of-type(2){
  background-image: url("./public/images/lake_house_constr.jpg");
  background-size: cover;
   background-position: center;
  
}

.news-card:nth-of-type(3){
  background-image: url("./public/images/lake_house.jpg");
  background-size: cover;
   background-position: center;
}



.news-card:nth-of-type(4){
  background-image: url("./public/images/lake_house_interior.jpg");
  background-size: cover;
   background-position: center;
   
  
}




.news-card h3,
.news-card h4 {
  color: #ffffff;
  font-size: 1.2rem;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    4px 4px 16px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.news-card:nth-of-type(1) h3{
 padding-left: 20px;
 padding-top: 20px;
}

.news-card:nth-of-type(1) h4 {
 padding-left: 20px;
 padding-top: 0px;
}








}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgba(70, 17, 195, 0.245);} */
  #news h2{
  width: 60%;
  font-size: 3.5rem;
  margin: 3rem 0 4rem 8rem;
}
.card-grid-news{
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: 55vh 55vh;
  gap: 9px;
  width: 75%;

  }


  
  
  .news-card:nth-of-type(1){
    grid-area: 1/1/2/8;
    
  }

  .news-card:nth-of-type(2){
    grid-area: 1/8/1/13;
    
  }
  
  .news-card:nth-of-type(3){
    grid-area: 2/1/2/6;
  
  }

  .news-card:nth-of-type(4){
    padding: 2rem;
    grid-area: 2/6/2/13;
  
  }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgba(242, 118, 192, 0.355);} */
  #news h2{
  width: 60%;
  font-size: 4.0rem;
  margin: 3rem auto 4rem 14rem;
}






}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
 /* body {background-color: rgba(101, 220, 233, 0.268);} */
  #news h2{
  width: 50%;
  font-size: 4.5rem;
  margin: 3rem auto 4rem 14rem;
}

 } 

/* building-tracker SECTION STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: rgba(117, 161, 117, 0.484);} */
    #building-tracker {
      min-height: 200vh;
    }   
    #building-tracker h2{
      width: 75%;
      font-size: 2.8rem;
      margin: 6rem auto;
    }

    .building-tracker-card-container{
      display:grid;
      grid-template-rows: 50vh 100vh 50vh;
      width:80%;
      height: 85vh;
      gap:10px;
      margin: 0 auto;
    }

    .building-tracker-card{
      box-sizing: border-box;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 1rem;
    }

    .building-tracker-card:nth-of-type(1){
      background: url(./public/images/building_card_1.jpg);
      background-size: cover;
      background-position: center;

    }

    .building-tracker-card:nth-of-type(2){
      background: #f8f9fa;
      box-shadow: 14px 14px 20px rgba(26, 35, 50, 0.08), -14px -14px 20px rgba(255, 255, 255, 0.9);
 

    }

    .building-tracker-card:nth-of-type(2){
      background: #f8f9fa;
      box-shadow: 14px 14px 20px rgba(26, 35, 50, 0.08), -14px -14px 20px rgba(255, 255, 255, 0.9);
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;

    }
    .building-tracker-card:nth-of-type(2) > h3{
      text-align: center;
      margin-top: 5%;
    }

    .building-tracker-card:nth-of-type(2) > p{
      text-align: center;
      margin-top: 5%;
      padding: 10%;
    }

    .building-tracker-card:nth-of-type(2) > button{

      margin-top: auto;
      margin-bottom: 10%;
      
    }



    .building-tracker-card:nth-of-type(3){
      background: url(./public/images/building_card_2.jpg);
      background-size: cover;
      background-position: center;

    }
    

}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgba(70, 17, 195, 0.245);} */
  #building-tracker h2{
  width: 60%;
  font-size: 3.5rem;
  margin: 0rem 0 4rem 8rem;
}

.building-tracker-card-container{
      display:grid;
      grid-template-columns: 1fr 1.4fr 1fr;
      grid-template-rows: auto;
      width:80%;
      height: 85vh;
      gap:10px;
      margin: 0 auto;
    }


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgba(242, 118, 192, 0.355);} */
  #building-tracker h2{
  width: 60%;
  font-size: 4.0rem;
  margin: 0rem auto 4rem 14rem;
}

}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
 /* body {background-color: rgba(101, 220, 233, 0.268);} */
  #building-tracker h2{
  width: 50%;
  font-size: 4.5rem;
  margin: 3rem auto 4rem 14rem;
}

 } 


 /* contact-us SECTION STYLING */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: rgba(117, 161, 117, 0.484);} */
    #contact-us {
      min-height: 100vh;
      padding-top: 4rem;
    }   
    
    #contact-us h2{
      width: 75%;
      font-size: 2.8rem;
      margin: 6rem auto;
      padding-top: 30rem;

    }
    
    .contact-us-container{
      width: 80%;
      min-height: 100vh;
      background: #f8f9fa;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: 14px 14px 20px rgba(26, 35, 50, 0.08), -14px -14px 20px rgba(255, 255, 255, 0.9);
      margin: 0 auto;
    }

    .contact-us-container h3{
      text-align: center;
      margin-top: 10%;
      grid-column: 2/4;
      
    }

    .contact-us-details {

  text-align: left;
  margin-top: 10px;
  grid-column: 1/5;
  grid-row: 2/6;
  display: flex;
  flex-direction: column;
  padding-left: 15%;
  padding-right: 15%;
}

label, input, button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

label:nth-of-type(1) {
  margin-bottom: 4px;
}

label {
  margin-top: 12px;
}

input::placeholder{
  color: var(--color-gray-400);
}

select option[value=""][disabled] {
  color: var(--color-gray-400);
}

select:valid {
  color: var(--text-secondary);
}

select:invalid {
  color: var(--color-gray-400);
}


input, select {
  background: #f8f9fa;
  padding: 10px;
  padding-left: 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  box-shadow: inset 4px 4px 8px rgba(26, 35, 50, 0.06), 
              inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

input:focus, textarea:focus, select:focus {
  border:none;
  box-shadow: inset 4px 4px 8px rgba(26, 35, 50, 0.06), 
              inset -4px -4px 8px rgba(255, 255, 255, 0.9),
              0 0 0 2px rgba(201, 169, 97, 0.2);
}

textarea {
  background: #f8f9fa;
  padding: 15px 10px 15px 20px; /* top, right, bottom, left */
  height: auto;
  min-height: 100px;
  resize: vertical;
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: inset 4px 4px 8px rgba(26, 35, 50, 0.06), 
              inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.btn-submit-contact {
  margin-top: 20px;
  margin-bottom: 50px;
  background: linear-gradient(145deg, var(--color-accent), var(--color-accent-dark));
  color: var(--text-white);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 6px 6px 12px rgba(26, 35, 50, 0.15), 
              -6px -6px 12px rgba(255, 255, 255, 0.7);
  width: 100%;
  letter-spacing: 0.5px;
}

.btn-submit-contact:hover {
  background: linear-gradient(145deg, var(--color-accent-light), var(--color-accent));
  transform: translateY(-2px);
  box-shadow: 8px 8px 16px rgba(26, 35, 50, 0.2), 
              -8px -8px 16px rgba(255, 255, 255, 0.8),
              0 0 20px rgba(201, 169, 97, 0.3);
}

.btn-submit-contact:active {
  transform: translateY(0);
  box-shadow: inset 4px 4px 8px rgba(26, 35, 50, 0.2), 
}


}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgba(70, 17, 195, 0.245);} */
  #contact-us h2{
  width: 60%;
  font-size: 3.5rem;
  margin: 1rem 0 4rem 8rem;
  padding-top: 0rem;

}

.contact-us-image {
  margin-top: 10px;
  grid-column: 3/5;
  grid-row: 2/6;
  margin:5% ;
  border-radius: var(--radius-xl);
  background-image: url(./public/images/contact-us.jpg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  
}

.contact-us-details {

 
  grid-column: 1/3;
  grid-row: 2/6;
  padding-left: 15%;
  padding-right: 0;
}


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgba(242, 118, 192, 0.355);} */
  #contact-us h2{
  width: 60%;
  font-size: 4.0rem;
  margin: 3rem auto 4rem 14rem;
}

}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
 /* body {background-color: rgba(101, 220, 233, 0.268);} */
  #contact-us h2{
  width: 50%;
  font-size: 4.5rem;
  margin: 3rem auto 4rem 14rem;
}

 } 


/* FOOTER STYLING */

 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: green;} */
  footer{
    max-width: 100%;
    min-height: 15vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 10%;
    background-color: var(--color-gray-200);
    padding: 20px;
  }

  .left-footer{
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  .left-footer p{
    text-align: center;
    font-weight: var(--font-weight-semibold);
  }

  .contact-details{
    margin: 5% 15%;
  }

  .center-footer{
    width: 70%;
    height: auto;
    margin: 10px auto;
    text-align: center;


  }

  .right-footer{
    width: 70%;
    height: auto;
    text-align: center;
    margin: 30px auto;

  }

  .right-footer p{
    font-weight: var(--font-weight-semibold);
  }

  .icons{
    margin: 5px;
  }
  .icons span{
    padding: 15%;
  
  }
 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgb(71, 17, 195);} */
  footer{
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: stretch;
  }


  .contact-details{
    margin: 5% 15%;
  }

  .left-footer{
    width: 30%;
    height: 100%;

  }

  .center-footer{
    width: 30%;
    height: 100%;
    margin: auto auto;

    border-right: #000000 1px solid;
    border-left: #000000 1px solid;
    text-align: center;


  }

  .right-footer{
    width: 30%;
    height: 100%;
    text-align: center;
  }

  .right-footer p{
    font-weight: var(--font-weight-semibold);
  }

  .icons{
    margin: 50px
  }
  .icons span{
    padding: 15%;
  
  }
}
  
/* LOGIN HTML */


 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 176px) {
 /* body {background-color: green;} */
  .login-container{
    position: relative;
    overflow: hidden;
    max-width:80%;
    min-height: 70vh;
    display: grid;
    flex-direction: row;
    grid-template-columns: 5% 40% 10% 40% 5%;
    grid-template-rows: 5% 90% 5%;
    margin: 100px auto;
    border: 1px solid rgba(223, 222, 222, 0.374);
    border-radius: var(--radius-xl);

    background: #f8f9fa;
    box-shadow: 14px 14px 20px rgba(26, 35, 50, 0.08), -14px -14px 20px rgba(255, 255, 255, 0.9);
  }




  .login-form-container:nth-of-type(1){
    grid-column: 2/3;
    grid-row: 2/3;
    margin: auto;
    width: 80%;
  }

  .login-form-container:nth-of-type(2){
    grid-column: 4/5;
    grid-row: 2/3;
    width: 80%;

  }

.login-cover {
  z-index: 50;
  width: 100%;      
  height: 100%;
  background-color: #f1f1f1;
  box-shadow: 6px 6px 12px rgba(26, 35, 50, 0.15), 
              -12px -10px 12px rgba(255, 255, 255, 0.7);
  padding: 0rem;
  box-sizing: border-box;
  position: absolute;        /* ADD */
  top: 0;                    /* ADD */
  right: 0;                  /* ADD */
  width: 50%;                /* ADD - match your grid column width */
  transition: transform 0.8s ease, border-radius 1s ease-in-out;  /* ADD */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-cover-right {
  transform: translateX(0%);
  border-radius: 150px var(--radius-xl) var(--radius-xl) 150px;
}

.login-cover-left {
  transform: translateX(-100%);  /* slides to cover left side */
  border-radius: var(--radius-xl) 150px 150px var(--radius-xl);
}

.login-cover .login-sign-up{
  z-index: 51;
  width:7rem;
  margin: 0 auto;

}

.login-cover h2,
.login-cover button {
  transition: opacity 0.3s ease;
}

.login-cover p{
  padding: 0 50px;
  width: 65%;
  text-align: center;
}

  .login-form-container p{
text-align: center;
font-size: 0.9rem;
  }

  .login-form-container h1{
margin: 0px 0 5px;
  }

  .login-form-container input{
margin: 10px  0
  }

  .login-social-icon{
  height: 1.2rem;
  width: 1.2rem;
  display: inline-block;
  background: #f8f9fa;
  padding: 10px;
  border: none;
  box-shadow: inset 4px 4px 8px rgba(26, 35, 50, 0.06), 
              inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  }

  .login-social-icon:hover{

    scale:1.15;
    color: white;
    box-shadow: 6px 6px 12px rgba(26, 35, 50, 0.15), 
              -6px -6px 12px rgba(255, 255, 255, 0.7);
    

  }


  .login-cover button{
    width: 7rem;
    height: 10%;
    font-size: .65rem;
    margin-top: 10px;

  }

  .login-cover button:first-of-type{
    margin-top: 30px;
    margin-bottom: 0;
  }



  .login-cover-text{
    z-index: 55;
    color: #000000;
  }


 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 /* body {background-color: rgb(71, 17, 195);} */
  .login-cover-right {
  border-radius: 100px var(--radius-xl) var(--radius-xl) 100px;
}

.login-cover-left {
  border-radius: var(--radius-xl) 100px 100px var(--radius-xl);
}

}
  


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
 /* body {background-color: rgb(242, 118, 192);} */
   .login-cover-right {
  border-radius: 120px var(--radius-xl) var(--radius-xl) 120px;
}

.login-cover-left {
  border-radius: var(--radius-xl) 120px 120px var(--radius-xl);
}

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
 /* body {background-color: rgb(101, 217, 233);} */
    .login-cover-right {
  border-radius: 140px var(--radius-xl) var(--radius-xl) 140px;
}

.login-cover-left {
  border-radius: var(--radius-xl) 140px 140px var(--radius-xl);
}

  
} 

/* Extra extra large devices (larger desktops, 1400px and up) */
 @media (min-width: 1400px) {
 /* body {background-color: rgb(144, 111, 221);} */
     .login-cover-right {
  border-radius: 152px var(--radius-xl) var(--radius-xl) 152px;
}

.login-cover-left {
  border-radius: var(--radius-xl) 152px 152px var(--radius-xl);
}

  
}



/* Scroll reveal animation for H2 text */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.scroll-reveal  span{
  color: hsla(0, 13%, 9%, 0.1);
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-image: linear-gradient(90deg, var(--text-primary), var(--text-primary));
  animation: scroll-reveal linear forwards;
  animation-timeline: view();
  animation-range-start: cover 20vw;
  animation-range-end: cover 50vw;

}

@keyframes scroll-reveal {
  to {
    background-size: 100% 100%;
  }
  
}




.hidden {
  display: none;
}

.no-select {
  user-select: none;
}







 /* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 176px) { */
 /* body {background-color: green;} */

 
/* } */

/* Medium devices (tablets, 768px and up) */
/* @media (min-width: 768px) { */
 /* body {background-color: rgb(71, 17, 195);} */

/* } */
  


/* Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) { */
 /* body {background-color: rgb(242, 118, 192);} */

/* } */

/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
 body {background-color: rgb(101, 217, 233);}
  
} */

/* Extra extra large devices (larger desktops, 1400px and up) */
/* @media (min-width: 1400px) {
 body {background-color: rgb(144, 111, 221);}
  
} */

