@charset "UTF-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Gotham, "Helvetica", Arial, sans-serif;
			font-kerning: auto;
            line-height: 1.6;
            color: #fff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: #222;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .logo img{
            width: 300px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #DACE84;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

       /* Hero video*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-container {
  position: relative;
  height: 100vh;
  overflow: visible;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* Optional overlay */
}


        .hero-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            font-weight: 500;
			font-variant-caps: all-small-caps;
			color:white;
        }

        .hero-content h1 {
			font-family: Times, "Times New Roman", "serif";
			font-size: 3rem;
			font-weight:500;
		
            margin-bottom: 1rem;
   
        }

        .hero-content h2 {
			font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
            font-size: 1.5rem;
            font-weight: 300;
        }

        /* Section Styling */
        section {
            padding: 5rem 5%;
			background: #111;
        }

        section h2 {
			font-family: Times, "Times New Roman", "serif";
            font-size: 2rem;
			font-weight: 400;
            margin-bottom: 2rem;
            color: ##2f4f4f;
            text-align: center;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-item {
            position: relative;
            height: 300px;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
        }

        .service-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
			
            transition: filter 0.3s, transform 0.3s;
        }

        .service-item:hover img {
            filter: brightness(0.5);
            transform: scale(1.05);
        }

        .service-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #DACE84;
            font-size: 1.5rem;
			line-height: normal;
            text-align: center;
            z-index: 2;
			background: rgba(0, 0, 0, 0.7);
          
        }

        /* About Section */
        #about {
            background: #222;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Clients Section */
        .clients-list {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.0rem;
			font-weight: 350;
            line-height: 2.5;
			text-align: center;	
        }
		
		.clients-list h3 {
			color:#dace84;
			font-size: 1.2rem;
			font-weight: 500;
            line-height: 2.5;
			text-align: center;		
		}

       


/* Contact Section */
        #contact {
            background: #222;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
			color: #DACE84;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: #dace84;
            color: white;
            padding: 1rem 2rem;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #000;
        }


 /* Thank You Message */
        .thank-you-message {
            display: none;
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .thank-you-message.show {
            display: block;
        }

        .thank-you-message h2 {
            color: #3498db;
            margin-bottom: 1rem;
        }

        .thank-you-message p {
            font-size: 1.2rem;
            color: #555;
        }

        .required {
            color: #e74c3c;
        }

 
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 5%;
            text-align: center;
        }

        footer h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        footer h4 {
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .linkedin-link {
            display: inline-block;
            margin-top: 1rem;
        }

        .linkedin-link img {
            width: 40px;
            height: 40px;
            transition: opacity 0.3s;
        }

        .linkedin-link:hover img {
            opacity: 0.7;
        }

        /* Thank You Message */
        .thank-you-message {
            display: none;
            text-align: center;
            padding: 3rem;
            background: #dace84;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .thank-you-message.show {
            display: block;
        }

        .thank-you-message h2 {
            color: black;
            margin-bottom: 1rem;
        }

        .thank-you-message p {
            font-size: 1.2rem;
            color: white;
        }

        .required {
            color: #e74c3c;
        }

        /* Footer */
        footer {
            background: #111;
            color: white;
            padding: 2rem 5%;
            text-align: center;
        }

        footer h3 {
            font-size: 1.0rem;
			font-weight: 400;
            margin-bottom: 0.1rem;
        }

        footer h4 {
            font-size: .8rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .linkedin-link {
            display: inline-block;
            margin-top: 1rem;
        }

        .linkedin-link img {
            width: 40px;
            height: 40px;
            transition: opacity 0.3s;
        }

        .linkedin-link:hover img {
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .nav-links {
                gap: 1rem;
            }
        }