/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importing font */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');

.syncopate-regular {
    font-family: "Syncopate", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.syncopate-bold {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.syncopate-active {
    font-family: "Syncopate", sans-serif;
    font-weight: 550;
    font-style: italic;
}

.profile-icon {
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.profile-icon:hover {
    color: #a7a7a7;
    background-color: rgba(0, 0, 0, 0.4);
}

.profile-icon i {
    transition: transform 0.3s ease;
}

.profile-icon:hover i {
    transform: scale(1.1);
}

.section-divider {
    border: none;
    height: 2px;
    background-color: #ffffff; /* White color */
    width: 100%;               /* Full width */
    margin: 60px 0;            /* Optional spacing */
}

body {
    background: url(../img/homePage.jpg) center center / cover;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Header section */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px;
    margin-right: 20px;
}

/* Updated Logo Styling */
.logo {
    position: absolute;
    padding-top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.right-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 2%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 1rem;
}

.active-page {
    position: relative;
    display: inline-block;
    color: aliceblue;
}

.active-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; 
    background-color: aliceblue; 
    bottom: -3px; 
    left: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
}

.auth-links {
    display: flex;
    gap: 15px;
    flex: 2;
    justify-content: flex-end;
}

.auth-links button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 3px 15px;
    color: white;
    cursor: pointer;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    background-image: url(../img/heroImage.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    padding: 0 40px;
    position: relative;
    gap: 60px;
}

.hero-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-icon img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    color: aliceblue;
    flex: 1;
    font-size: 60px;
    text-align: left; /* Optional: Align text to the left */
}

.hero-text p {
    color: aliceblue;
}
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.quick-links {
    font-size: 15px;
    color: aliceblue;
    font-weight:bold;
    margin-bottom: 80px;
}

/* Quick Links Section */
.links-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.link-box {
    font-family: "syncopate";
    width: 280px;
    height: 70px;
    padding: 20px;
    background-color: rgb(92, 92, 92);
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 1px;
    text-align: left;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Remove margin from last button */
.link-box:last-child {
    margin-right: 0;
}

/* Hover effect */
.link-box:hover {
    background-color: #fff;
    color: rgb(92, 92, 92);
}

/* Focus effect (optional for accessibility) */
.link-box:focus {
    outline: none;
    background-color: #ccc;
    color: rgb(92, 92, 92);
}

/* 🔥 Skewer / Barbecue Stick Line Effect */
.links-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;            /* Thickness of the line */
    background-color: #fff; /* Color of the line */
    z-index: 1;             /* Keep line behind the boxes */
}

.link-box {
    z-index: 2; /* Ensure boxes are above the skewer line */
}

.btn {
    padding: 15px 30px;
    background-color: #a7a7a7;
    color: #000000;
    font-family: "syncopate";
    font-weight: bold;
    border-radius: 50px;
    font-size: 10px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #5f5f5f;
    color: #fff;
}

/*Services Section*/
.services-container {
    position: relative;
    width: 100vw;
    max-width: 1450px;
    height: 870px;
    background: url(../img/servicesImg.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.title {
    position: absolute;
    font-family: "syncopate";
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-top: -40px;
    z-index: 10;
}

.text-box {
    font-family: "syncopate";
    position: absolute;
    top: 100px;
    left: 49px;
    width: 49%;
    background: rgba(0, 0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-size: 12px;
    line-height: 1.5;
}

/*Info Section*/
.info-container {
    position: relative;
    margin-top: 30px;
    width: 100vw;
    max-width: 1650px;
    height: 770px;
    background: url(../img/infoImg.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.title {
    position: absolute;
    font-family: "syncopate";
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-top: -40px;
    z-index: 10;
}

.info-text-box {
    font-family: "syncopate";
    position: absolute;
    top: 100px;
    left: 114px;
    width: 48%;
    background: rgba(0, 0, 0, 0);
    padding-bottom: 20px;
    height: 450px;
    border-radius: 10px;
    color: white;
    font-size: 16.5px;
    line-height: 1.5;
}

/*Contact Us Section*/
.contact-section {
    background-color: #11111100;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;   
  }
  
  .contact-section h2 {
    font-family: "syncopate";
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .contact-box {
    font-family: "syncopate";
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 5px 5px 0px #ccc;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }
  
  .contact-icon {
    font-size: 24px;
    margin-right: 15px;
  }
  
  .contact-item p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
  }
  
  /* Optional Responsive */
  @media (max-width: 600px) {
    .contact-box {
      padding: 20px;
    }
  
    .contact-item p {
      font-size: 14px;
    }
  }
  

  


/* Footer Section */
.footer {
    background-color: #59595900;
    color: #fff;
    padding: 0px 50px;
    font-family: Arial, sans-serif;
    font-family: "syncopate";
    text-align: center;
    width: 100%;               /* Full width */
  }
  
  .footer-container {
    display: flex;
    justify-content: space-evenly; /* Even spacing */
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .footer-logo h2 {
    font-size: 30px;
    font-weight: bold;
  }
  
  .footer-logo p {
    font-size: 14px;
    margin-top: 8px;
    color: #ccc;
  }
  
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #fff;
  }
  
  .footer-subscribe {
    max-width: 250px;
  }
  
  .footer-subscribe p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  .subscribe-btn {
    background-color: #ccc;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  .subscribe-btn:hover {
    background-color: #fff;
  }
  
  /* Optional Responsive */
  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column, .footer-logo, .footer-subscribe {
      margin-bottom: 30px;
    }
  }
  
/* Media Queries for Responsiveness */

/* Mobile Devices (iPhone 6 and smaller) */
@media screen and (max-width: 375px) {
    .nav {
        padding: 0.5rem;
    }

    .logo img {
        max-height: 40px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 80px 10px;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 40px;
        text-align: center;
    }

    .hero-icon img {
        width: 150px;
    }

    .links-container {
        flex-direction: column;
        gap: 20px;
    }

    .link-box {
        width: 90%;
        height: 60px;
    }

    .services-container, .info-container {
        padding: 20px;
    }

    .text-box, .info-text-box {
        padding: 15px;
    }

    .footer-container {
        flex-direction: column;
        padding: 20px;
    }

    .footer-column {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-right: 20px;
    }

    .nav-links {
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background-color: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .right-nav {
        position: relative;
        display: flex;
        align-items: center;
    }
}

/* Tablets (iPad) */
@media screen and (min-width: 376px) and (max-width: 1024px) {
    .nav {
        padding: 1rem;
    }

    .logo img {
        max-height: 45px;
    }

    .hero {
        padding: 100px 20px;
        gap: 60px;
    }
    
    .hero-text {
        width: 60%;
    }
    
    .hero-text h1 {
        font-size: 50px;
    }
    
    .hero-icon img {
        width: 200px;
    }
    
    .links-container {
        gap: 30px;
    }

    .link-box {
        width: 250px;
    }

    .services-container, .info-container {
        padding: 30px;
    }

    .text-box, .info-text-box {
        padding: 20px;
    }

    .footer-container {
        padding: 30px;
    }
}

/* Laptops */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .nav {
        padding: 1.5rem;
    }

    .logo img {
        max-height: 50px;
    }

    .hero {
        padding: 120px 30px;
        gap: 100px;
    }
    
    .hero-text {
        width: 50%;
    }
    
    .hero-text h1 {
        font-size: 55px;
    }
    
    .hero-icon img {
        width: 220px;
    }
    
    .links-container {
        gap: 40px;
    }

    .link-box {
        width: 280px;
    }

    .services-container, .info-container {
        padding: 40px;
    }

    .text-box, .info-text-box {
        padding: 25px;
    }

    .footer-container {
        padding: 40px;
    }
}

/* Desktop */
@media screen and (min-width: 1441px) and (max-width: 1920px) {
    .nav {
        padding: 2rem;
    }

    .logo img {
        max-height: 60px;
    }

    .hero {
        padding: 150px 40px;
        gap: 120px;
    }
    
    .hero-text {
        width: 45%;
    }
    
    .hero-text h1 {
        font-size: 65px;
    }
    
    .hero-icon img {
        width: 250px;
    }
    
    .links-container {
        gap: 50px;
    }

    .link-box {
        width: 300px;
    }

    .services-container, .info-container {
        padding: 50px;
    }

    .text-box, .info-text-box {
        padding: 30px;
    }

    .footer-container {
        padding: 50px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1921px) {
    .nav {
        padding: 2.5rem;
    }

    .logo img {
        max-height: 70px;
    }

    .hero {
        padding: 180px 50px;
        gap: 150px;
    }
    
    .hero-text {
        width: 40%;
    }
    
    .hero-text h1 {
        font-size: 75px;
    }
    
    .hero-icon img {
        width: 300px;
    }
    
    .links-container {
        gap: 60px;
    }

    .link-box {
        width: 350px;
    }

    .services-container, .info-container {
        padding: 60px;
    }

    .text-box, .info-text-box {
        padding: 35px;
    }

    .footer-container {
        padding: 60px;
    }
}

/* Responsive adjustments for hero section */
@media screen and (max-width: 1200px) {
    .hero-content {
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-text {
        max-width: 500px;
    }
    
    .hero-icon img {
        width: 220px;
    }
    
    .info-text-box {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-text {
        max-width: 450px;
    }
    
    .hero-icon img {
        width: 200px;
    }
    
    .info-text-box {
        font-size: 15px;
        width: 55%;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 150px 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-icon {
        order: 2;
    }
    
    .hero-icon img {
        width: 180px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .links-container {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .link-box {
        width: 280px;
        height: 70px;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding: 180px 15px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 40px;
        text-align: center;
    }
    
    .hero-text p {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-icon img {
        width: 150px;
    }
    
    .link-box {
        width: 280px;
        height: 70px;
        padding: 20px;
    }
    
    .quick-links {
        margin-top: 20px;
    }
}

@media screen and (max-width: 375px) {
    .hero {
        padding: 200px 10px;
    }
    
    .hero-content {
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-text p {
        font-size: 12px;
        text-align: center;
    }
    
    .hero-icon img {
        width: 120px;
    }
    
    .link-box {
        width: 280px;
        height: 70px;
        padding: 20px;
        font-size: 15px;
    }
    
    .quick-links {
        margin-top: 15px;
        margin-bottom: 40px;
    }
}

/* Responsive adjustments for services and info sections */
@media screen and (max-width: 1200px) {
    .text-box {
        width: 40%;
        left: 4%;
    }
    
    .info-text-box {
        width: 40%;
        left: 4%;
    }
}

@media screen and (max-width: 992px) {
    .text-box {
        width: 35%;
        left: 3%;
        font-size: 11px;
    }
    
    .info-text-box {
        width: 35%;
        left: 3%;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .services-container, .info-container {
        height: auto;
        min-height: 700px;
        padding: 20px;
        padding-top: 60px;
    }
    
    .text-box {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        text-align: center;
        padding: 15px;
        line-height: 1.8;
    }
    
    .info-text-box {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        text-align: center;
        padding: 15px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 576px) {
    .services-container, .info-container {
        min-height: 800px;
        padding: 15px;
        padding-top: 70px;
    }
    
    .text-box {
        width: 85%;
        top: 120px;
        font-size: 10px;
        line-height: 2;
        padding: 10px;
    }
    
    .info-text-box {
        width: 85%;
        top: 120px;
        font-size: 13px;
        line-height: 2;
        padding: 10px;
    }
}

@media screen and (max-width: 375px) {
    .services-container, .info-container {
        min-height: 900px;
        padding: 10px;
        padding-top: 80px;
    }
    
    .text-box {
        width: 90%;
        top: 140px;
        font-size: 9px;
        line-height: 2.2;
        padding: 8px;
    }
    
    .info-text-box {
        width: 90%;
        top: 140px;
        font-size: 12px;
        line-height: 2.2;
        padding: 8px;
    }
}

/* Responsive adjustments for titles */
@media screen and (max-width: 1200px) {
    .title {
        font-size: 28px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 992px) {
    .title {
        font-size: 24px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 22px;
        margin-top: 35px;
    }
    
    .services-container, .info-container {
        height: auto;
        min-height: 700px;
        padding: 20px;
        padding-top: 60px;
    }
    
    .text-box {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        text-align: center;
        padding: 15px;
        line-height: 1.8;
    }
    
    .info-text-box {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        text-align: center;
        padding: 15px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 576px) {
    .title {
        font-size: 20px;
        margin-top: 40px;
    }
    
    .services-container, .info-container {
        min-height: 800px;
        padding: 15px;
        padding-top: 70px;
    }
    
    .text-box {
        width: 85%;
        top: 120px;
        font-size: 10px;
        line-height: 2;
        padding: 10px;
    }
    
    .info-text-box {
        width: 85%;
        top: 120px;
        font-size: 13px;
        line-height: 2;
        padding: 10px;
    }
}

@media screen and (max-width: 375px) {
    .title {
        font-size: 18px;
        margin-top: 45px;
    }
    
    .services-container, .info-container {
        min-height: 900px;
        padding: 10px;
        padding-top: 80px;
    }
    
    .text-box {
        width: 90%;
        top: 140px;
        font-size: 9px;
        line-height: 2.2;
        padding: 8px;
    }
    
    .info-text-box {
        width: 90%;
        top: 140px;
        font-size: 12px;
        line-height: 2.2;
        padding: 8px;
    }
}
