@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #0d1732;
  --secondary-color: #f8f8f8;
  --text-dark: #111827;
  --text-light: ##d1d5db;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
  --background-gradient-1: linear-gradient(to right, #1a5fee, #10bae1);
  --background-gradient-2: linear-gradient(to right, #0d1732, #0f2835);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
  
}

.section__subheader {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--text-dark);
  background-color: var(--primary-color);
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.3);
}

.btn__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.btn__link span {
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn__link:hover span {
  transform: translateX(10px);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}
.header-wrapper {
    background-image: linear-gradient(rgba(255, 255, 255, 0.3),rgba(255, 255, 255, 0.3)),url("assets/hd.jpg");
    background-size: cover; /* Ensures the image covers the whole wrapper */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating the image */
    color: #fff; /* Adjust text color for contrast */
    min-height: 100vh; /* Makes the wrapper span at least the viewport height */
  }
nav {
  position: fixed;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
 
  z-index: 99;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.nav__logo a {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.nav__links {
  position: absolute;
  left: 0;
  top: 68px;
  padding: 2rem;
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
  color: var(--white);
  
}

.nav__links.open {
  transform: scaleY(1);
  background-color: #111827;
}

.link a {
  font-weight: 500;
  color: var(--text-light);
  transition: 0.3s;
}

.link a:hover {
  color: var(--text-dark);
}

.nav__links .link a {
  color: var(--white);
  opacity: 0;
}

.nav__links.open .link a {
  opacity: 1;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.header__content {
    overflow: hidden;
    text-align: center;
  }
  
  .header__content h2 {
    position: relative;
    isolation: isolate;
    max-width: fit-content;
    margin-left: auto;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
  }
  
  .header__content h2::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 1rem), -50%);
    height: 2px;
    width: 150%;
    background-color: var(--white);
  }
  
  .header__content h1 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 5rem;
  }
  
  .h1__span-1 {
    font-size: 4rem;
    color: var(--primary-color);
  }
  
  .h1__span-2 {
    font-size: 2rem;
    font-weight: 400;
  }
  
  .header__content p {
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 0rem;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .btn:hover {
    color: var(--primary-color);
    background-color: var(--white);
  }
  
  .socials {
    padding-block: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .socials a {
    font-size: 1.5rem;
    color: var(--text-light);
  }
  
  .socials a:hover {
    color: var(--primary-color);
  }
  
  .header__bar {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
.about__header {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
}

.about__content .paragraph {
  margin-block: 2rem;
  color: var(--text-light);
}

.about__grid {
  padding-block: 4rem;
  display: grid;
  gap: 2rem 1rem;
  border-bottom: 1px solid var(--text-light);
}

.about__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__card span {
  padding: 8px 15px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--secondary-color);
  border-radius: 100%;
}

.about__card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about__card p {
  color: var(--text-light);
}
/* Services Section Styling */
.services-section {
  padding: 60px 20px;
  background-color: #f9fafc;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 5rem;
}

.services-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Layout for displaying 2 at the top and 4 at the bottom */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid > .service-card:nth-child(-n+2) {
    grid-column: span 2; /* Make the first 2 cards span 2 columns each */
  }
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  background-color: var(--text-dark);
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}


 /*test*/

 .contact-section {
    text-align: center;
    padding: 50px 20px;
    
  }
  
  .contact-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-top: 50px;
  }
  .contact-title2 {
    font-size: 1rem;
    color: var(--white);
    margin-top: 20px;
  }

  .contact-blocks {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 100px;
  }
  
  .contact-block {
    width: 400px;
    height: 300px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .contact-block:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 100px;
  }
  
  .contact-block p {
    font-size: 14px;
    color:var(--white);
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-block {
      width: 90%;
    }
  }


  /*---CONTACT PAGE--*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
  }
  .location iframe{
    width: 100%;
  }

/* Contact Form v2 Styles */
.contact-form-v2 {
    max-width: 750px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff;
    color: #333;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-header-v2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .contact-header-v2 h1 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
  }
  
  .contact-header-v2 p {
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  
  .form-group textarea {
    resize: none;
  }
  
  .full-width {
    flex: 1 0 100%;
  }
  
  .submit-btn-v2 {
    width: 100%;
    padding: 15px 0;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn-v2:hover {
    background-color: var(--text-dark);
  }
  
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }
  
  
  /* Certifications Section */
.certifications {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
  }
  
  .certifications-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .certifications-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .certifications-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .certification-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 300px;
  }
  
  .certification-card img {
    max-width: 100px;
    filter: grayscale(100%);
    margin-bottom: 20px;
  }
  
  .certification-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .certification-card p {
    font-size: 14px;
    color: #555;
  }
  
  .certification-card:hover img {
    filter: grayscale(0%);
    transition: filter 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .certifications-grid {
      flex-direction: column;
      align-items: center;
    }
  }

/* Core Values Section */
/* Our Core Values Section */
.our-core-values {
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;
  }
  
  .our-core-values h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .value-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .value-box .icon {
    font-size: 50px;
    margin-bottom: 10px;
    opacity: 0.7;
  }
  
  .value-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .value-box p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .values-container {
      grid-template-columns: 1fr;
    }
  }

  /* Services2 Alt Section */
.services2-alt {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .services2-alt h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .services2-alt .intro-text {
    color: var(--text-light);
    margin-bottom: 40px;
  }
  
  .services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .services-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
  
  .services-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .services-list .icon {
    font-size: 40px;
    color: #0077b6;
    flex-shrink: 0;
  }
  
  .services-list .content {
    text-align: left;
  }
  
  .services-list h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .services-list p {
    color: var(--text-light);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-list li {
      flex-direction: column;
      text-align: center;
    }
  
    .services-list .content {
      text-align: center;
    }
  }
  
  /*--FAQS*/
  .faq {
    background-color: var(--white);
  }
  .faq h2{
    text-align: center;
  }
  .faq .intro-text{
    text-align: center;
  }
  
  .question__accordian {
    position: relative;
    isolation: isolate;
    max-width: 900px;
    margin: 4rem auto 0;
    display: grid;
    gap: 2px;
  }
  
  .question__accordian::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
  }
  
  .question__box {
    background-color: var(--white);
  }
  
  .question__box .title {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .question__box .title p span {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 1rem;
    background: var(--background-gradient-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100%;
  }
  
  .question__box .title p {
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .question__box .title .icon {
    padding: 5px 10px;
    font-size: 1.2rem;
    cursor: pointer;
    
  }
  
  .question__box .content {
    height: 0;
    padding: 0 2rem;
    background: var(--secondary-color);
    transition: 0.5s;
    overflow: hidden;
  }
  
  .question__box.active .content {
    height: 130px;
    padding: 2rem;
  }
.ri-question-mark{
    color: var(--white);
}

















  
  

  

  /*whatapp icon*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/*About Page*/

.about{
    background: url(assets/about.jpg) no-repeat left;
    background-size: 55%;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 100px 0;
  }
  .inner-section{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 140px;
    box-shadow: 10px 10px 8px rgba(0,0,0,0.3);
  }
  .inner-section h1{
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 5rem;
  }
  .text{
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
  }
  .skills button{
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 0rem;
    transition: 0.3s;
    cursor: pointer;
  }
  .skills button:hover{
    color: var(--primary-color);
    background-color: var(--white);
  }
  @media screen and (max-width:1200px){
    .inner-section{
        padding: 80px;
    }
  }
  @media screen and (max-width:1000px){
    .about{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-section{
        width: 100%;
    }
  }
  
  @media screen and (max-width:600px){
    .about{
        padding: 0;
    }
    .inner-section{
        padding: 60px;
    }
    .skills button{
        font-size: 19px;
        padding: 5px;
        width: 160px;
    }
  }
  
/* Our Team Section */
.our-team {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
  }
  
  .our-team h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
  }
  
  .team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 400px; /* Increased width */
    padding: 30px; /* Increased padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .team-info h3 {
    font-size: 26px; /* Increased font size for names */
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .team-info .occupation {
    display: block;
    font-size: 18px; /* Increased font size for occupation */
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .team-info p {
    font-size: 16px; /* Increased font size for description */
    color: #666;
    line-height: 1.8; /* Improved readability */
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-links a {
    text-decoration: none;
    color: #555;
    font-size: 20px; /* Increased size for icons */
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .team-container {
      flex-direction: column;
      align-items: center;
    }
  
    .team-member {
      width: 100%;
    }
  }
  
/* Our Merits Section */
.our-merits {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .our-merits h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  /* Timeline */
  .merits-timeline {
    position: relative;
    padding-left: 50px;
    border-left: 4px solid var(--primary-color);
  }
  
  .merit {
    position: relative;
    margin-bottom: 30px;
  }
  
  .merit:last-child {
    margin-bottom: 0;
  }
  
  .merit-content {
    background: #f9f9f9;
    padding: 25px 35px;
    border-radius: 10px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .merit-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .merit h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .merit p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Timeline Circle */
  .merit::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .merits-timeline {
      padding-left: 20px;
    }
  
    .merit::before {
      left: -10px;
    }
  
    .merit-content {
      padding: 20px 25px;
    }
  }
  
  /*Test*/

  @media (width < 900px) {
  
    .question__box.active .content {
      height: 175px;
    }
    
  }
  
  @media (width < 600px) {
    
    .question__box.active .content {
      height: 250px;
    }
  }

  
  
































.portfolio__header {
  display: grid;
  gap: 2rem;
}

.portfolio__header .paragraph {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.portfolio__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.portfolio__card img {
  max-width: 400px;
  margin-inline: auto;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.client__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.swiper {
  margin-top: 4rem;
  width: 100%;
}

.swiper-slide {
  max-width: 500px;
}

.client__card {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--secondary-color);
}

.client__card img {
  max-width: 70px;
  border-radius: 100%;
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.client__ratings {
  color: goldenrod;
}

.client__card p {
  margin-top: 1rem;
  color: var(--text-light);
}

.news__grid {
  margin-top: 4rem;
  display: grid;
  gap: 4rem;
}

.news__card {
  display: grid;
  gap: 1rem;
}

.news__card img {
  height: 100%;
  object-fit: cover;
}

.news__card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.news__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact {
  background-color: var(--secondary-color);
}

.contact__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.contact__container .section__header {
  max-width: 800px;
  font-size: 3.5rem;
  font-weight: 500;
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__col h5 a {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.footer__col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  .footer__col a {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-light);
  }

.footer__col p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer__col form {
  margin-bottom: 2rem;
  padding: 10px;
  display: flex;
  align-items: center;
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input {
  width: 100%;
  outline: none;
  border: none;
  font-size: 1rem;
}

.footer__col button {
  outline: none;
  border: none;
  font-size: 1.25rem;
  color: var(--primary-color);
  background-color: transparent;
  cursor: pointer;
}

.footer__socials h4 {
  margin-bottom: 5px;
}

.footer__socials div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 1.75rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 480px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1rem;
  }

  .news__card {
    grid-auto-rows: 1fr;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    box-shadow: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    transform: none;
  }

  .nav__links .link a {
    opacity: 1;
  }

  .nav__menu__btn {
    display: none;
  }

  .header__content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    align-items: center;
  }

  .header__image {
    grid-template-columns: 2fr 1fr;
  }

  .header__image img:last-child {
    display: flex;
  }

  .about__header {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client__header {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .news__card {
    grid-auto-rows: auto;
  }

  .news__card:first-child {
    grid-area: 1/1/3/2;
  }

  .news__card:not(:first-child) {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .header__image {
    gap: 2rem;
  }

  .portfolio__grid {
    gap: 2rem;
  }

  .news__grid {
    gap: 4rem;
  }

  .news__card {
    gap: 2rem;
  }
}