@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;    
}

p, a, ul, li, blockquote {
    font-family: "Inter", sans-serif;    
}

body {
    background-color: #F8FAFC;
    padding: 50px 50px 0px 50px;
    box-sizing: border-box;
    margin: 0px;
}

/* Main */
.main {
    background-color: #fff;    
    margin: auto;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0px 60px 0px;
}

/* Header & Navbar */
.site-header {
    border-bottom: 1px solid #eee;
    top: 0;
    position: relative;
    background-color: #fff;
    z-index: 1000;
    padding-top: 20px;
    margin-bottom: 20px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 25px 20px;
}
.nav-logo img {
    width: 180px;
    height: auto;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    box-sizing: border-box;
}
.nav-link {
    color: #444;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: #111;
}
.btn-contact {
    background-color: #FA7415;
    color: #ffffff !important;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-contact:hover {
    background-color: #111;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #0F172A;
    position: relative;
    transition: background-color 0.2s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #0F172A;
    left: 0;
    transition: transform 0.2s ease, top 0.2s ease;
}
.hamburger::before { 
    top: -6px; 
}
.hamburger::after {
    top: 6px; 
}

/* Hero Section */
#hero {
    padding: 20px;
    display: flex;
    align-items: center; 
    gap: 100px;
    box-sizing: border-box;
}
#hero-first {
    width: 60%;
    padding: 10px;
    box-sizing: border-box;
}
.feature-list {
    list-style-type: none; 
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 24px; 
    background-color: #F8FAFC;
    border: 1px solid #eaeaec;
    border-radius: 50px; 
    max-width: 100%;
    justify-content: space-evenly;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px; 
    font-size: 17px;
    color: #444;
}
.feature-item::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%; 
}
.empower::before {
    background-color: #0F172A;
}
.build::before {
    background-color: #F97316; 
}
.accelerate::before {
    background-color: #0F172A; 
}
#hero-first h1 {
    font-size: 70px;
    font-weight: bold;
    color: #111;
    line-height: 1.1em;
    margin: 0px;
}
#hero-first h1 span {
    font-family: "Playfair Display", serif;
    font-style: italic;
}
#hero-first p {
    font-size: 35px;
    color: #444;
    line-height: 1.2em;
    margin-top: 10px;
}
#hero-first a {
    background-color: #0F172A;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    padding: 15px;
    display: inline-block;
    transition: all 0.3s ease-in;
}
#hero-first a:hover {
    background-color: #000;
}
#hero-second {
    width: 40%;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;    
}
#hero-second h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
    color: #222;
    margin-bottom: 0px;
}

/* About Section */
#about {
    width: 60%;
    padding: 20px;
    margin: 30px auto;   
    box-sizing: border-box;
}
#about h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
    color: #222;
}
#about p {
    line-height: 1.5em;
    text-align: center;
    font-size: 18px;
    color: #444;
}

/* Services Section */
.services {
    padding: 20px;
    display: flex;
    align-items: center; 
    gap: 30px;
    box-sizing: border-box;
}
.services-first, .services-second, .services-third {
    width: 33.33%;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
}
.services-first h3, .services-second h3, .services-third h3 {
    font-size: 22px;
    text-align: left;
    line-height: 1.2em;
}
.services-first p, .services-second p, .services-third p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
}

/* Why Choose Me Section */
#whychooseme {
    padding: 20px;
    display: flex;
    align-items: center; 
    gap: 100px;
    width: 70%;
    margin: 10px auto 0px;
    box-sizing: border-box;    
}
#whychooseme-first {
    width: 60%; 
}
#whychooseme-first h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: left;
    color: #222;
}
#whychooseme-first div {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #F8FAFC;
    margin: 20px 0px 20px 0px;
    box-sizing: border-box;
}
#whychooseme-first div h3 {
    font-size: 22px;
    text-align: left;
    line-height: 1.2em;
    color: #333;
}
#whychooseme-first div p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
    color: #444;
}
#whychooseme-second {
    width: 40%;
}
#whychooseme-second img {
    max-width: 100%;       
    height: auto;     
    object-fit: cover;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin: auto;
    display: block;
}

/* Side Projects Section */
#side-projects {
    padding: 20px;
    width: 80%;
    margin: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
}
#side-projects #spdetails {
    padding: 20px;
    box-sizing: border-box;
    width: 30%;
}
#side-projects #spdetails h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: left;
    color: #222;    
}
#side-projects #spdetails p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
    color: #444;
}
.spcolumn {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
}
.spcolumn h3 {
    font-size: 22px;
    text-align: left;
    line-height: 1.2em;
    color: #333;
}
.spcolumn p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
    color: #444;
}
.spcolumn a {
    background-color: #222;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    transition: all 0.3s ease-in;
}
.spcolumn a:hover {
    background-color: #444;
}
.spcolumn img {
    max-width: 100%;       
    height: auto;     
    object-fit: cover;
    border-radius: 20px;
    margin: auto;
    display: block;
}

/* Clients Section */
#clients {
    background-color: #0F172A;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin: 60px auto 30px;
}
#clients #details {
    width: 60%;
    padding: 20px;
    margin: 20px auto;  
    box-sizing: border-box;
}
#clients #details h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
    color: #fff;
}
#clients #details p {
    line-height: 1.5em;
    text-align: center;
    font-size: 18px;
    color: #eee;
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr); 
    gap: 20px; 
    width: 70%;
    margin: auto;
    padding-bottom: 90px;
    box-sizing: border-box;
}
.logo-card {
    background-color: #ffffff;
    border-radius: 12px; 
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); 
}
.logo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain; 
}

/* Testimonials */
#testimonials {
    padding: 20px;
    width: 100%;
    margin: 60px auto;
    display: flex;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
}
#testimonials #detailss {
    padding: 20px;
    box-sizing: border-box;
      width: 40%;
}
#testimonials #detailss h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: left;
    color: #222;    
}
#testimonials #detailss p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
    color: #444;
}
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #eaeaec;
    border-radius: 12px;
    padding: 20px 20px 40px 20px;
    width: 30%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03); 
    transition: transform 0.3s ease;
    box-sizing: border-box;
}
.testimonial-card:hover {
    transform: translateY(-5px); 
}
.testimonial-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.5em;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}
.author-info strong {
    display: block;
    font-size: 20px;
    color: #111;
    font-weight: 600;
}
.author-info span {
    display: block;
    font-size: 15px;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Contact */
#contact {
    background-color: #F8FAFC;
    padding: 20px 40px 60px 40px;
    text-align: center;
    width: 70%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin: auto;
    gap: 100px;
    border-radius: 15px;
}
#contact #cfirst {
    width: 60%;
}
#contact #cfirst h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: left;
    color: #222;
}
#contact #cfirst p {
    line-height: 1.5em;
    text-align: left;
    font-size: 18px;
    color: #444;
}
#contact #csecond {
    width: 40%;
}
#contact #csecond img {
    max-width: 100%;
    height: auto;
    object-fit: contain; 
    margin: auto;
    display: block;
}
#contact #csecond h3 {
    font-size: 20px;
    line-height: 1.2em;
    text-align: left;
    color: #333;
}
#contact #csecond p {
    font-size: 18px;
    color: #555;
    line-height: 1.5em;
    text-align: left;
}
#contact a {
    color: #555;
    font-size: 18px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease-in;
}
#contact a:hover {
    opacity: 0.8;
}

/* Thank You */
#thank-you {
    width: 60%;
    padding: 20px;
    margin: 30px auto;   
    box-sizing: border-box;
}
#thank-you h2 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
    color: #222;
}
#thank-you h3 {
    font-size: 20px;
    line-height: 1.2em;
    text-align: center;
    color: #333;
}
#thank-you p {
    line-height: 1.5em;
    text-align: center;
    font-size: 18px;
    color: #444;
}
#thank-you a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease-in;
}
#thank-you a:hover {
    opacity: 0.8;
}
#thank-you img {
    max-width: 100%;
    height: auto;
    object-fit: contain; 
    margin: auto;
    display: block;
}

/* Footer */
footer {
    width: 100%;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
}
footer p, footer a {
    color: #444;
    font-size: 14px;
    text-align: center;
}

/* Cognito Forms */
html .cog-abuse ul, .cog-abuse ul {
    display:none!important;
}
html .cog-branding--minimal, html .cog-branding--minimal *, .cog-branding--minimal, .cog-branding--minimal * {
    display:none!important;
}
html .cog-cognito hr, .cog-cognito hr {
    display:none!important
}
html .cog-abuse, .cog-abuse{
    display:none!important;
}
html .cog-form__container {
    padding: 30px!important;
    box-sizing: border-box;
}
#cog-7-helptext p {
    font-size: 14px!important;
    color: #333!important;
}
.cog-button {
    min-width: 100%!important;
}

/* Dialog Box */
.minimal-dialog {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0; 
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.minimal-dialog::backdrop {
    background-color: rgba(15, 23, 42, 0.6); 
    backdrop-filter: blur(2px); 
}
.dialog-content {
    padding: 20px;
    color: #1a1a1a;
}
.dialog-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 30px;
    color: #111;
}
.dialog-content p {
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    font-size:17px;
}
.btn-close {
    background-color: #000;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-close:hover {
    background-color: #333;
}

/* Responsive Design for Mobile / Tablets */
@media (max-width: 1000px) {
/* Body */
body {
    padding: 20px;
}

/* Main */
.main {
    padding: 10px 0px 30px 0px;
}

/* Navigation */
.mobile-toggle {
    display: block;
}
.navbar {
    padding: 20px;
}
.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    margin-top: 0px; 
}
.nav-menu.active {
    max-height: 500px; 
    border-bottom: 1px solid #eaeaec;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    margin-top: 0px;
    padding-top:20px;
    padding-bottom: 30px;
}
.nav-menu li {
    width: 100%;
    margin-bottom: 1.5rem;
}
.nav-menu li:last-child {
    margin-bottom: 0;
}
.btn-contact {
    display: inline-block;
}

/* Hero Section */
#hero {
    gap: 50px;
    flex-direction: column;
    padding: 0px;
}
#hero-first {
    width: 100%;
    padding: 0px 15px 0px 15px;
    text-align: center;
}
.feature-list {
    gap: 10px; 
}
.feature-item {
    gap: 10px; 
    font-size: 12px;
    text-align: center;
}
#hero-first h1 {
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
}
#hero-first p {
    font-size: 20px;
    text-align: center;
    line-height: 1.3em;
    margin-top: 20px;
}
#hero-first a {
    font-size: 18px;
}
#hero-second {
    width: 100%;
    padding: 0px 15px 0px 15px;
}
#hero-second h2 {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 20px;
}

/* About Section */
#about {
    width: 100%;
    padding: 20px;
    margin: 20px auto;   
}
#about h2 {
    font-size: 30px;
}

/* Services Section */
.services {
    padding: 15px;
    flex-direction: column;
}
.services-first {
    width: 100%;
}
.services-second {
    width: 100%;
}
.services-third {
    width: 100%;
}
.services-first h3, .services-second h3, .services-third h3 {
    font-size: 20px;
}

/* Why Choose Me Section */
#whychooseme {
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
#whychooseme-first {
    width: 100%; 
}
#whychooseme-first h2 {
    font-size: 30px;
    text-align: center;
    margin: 0px;
}
#whychooseme-first div {
    width: 100%;
}
#whychooseme-first div h3 {
    font-size: 20px;
}
#whychooseme-second {
    width: 100%;
}

/* Side Projects Section */
#side-projects {
    padding: 20px;
    margin: 0px auto;
    gap: 10px;
    flex-direction: column;
}
#side-projects #spdetails {
    padding: 0px;
    width: 100%;
}
#side-projects #spdetails h2 {
    font-size: 30px;
    text-align: center;
    margin-top: 0px;
}
#side-projects #spdetails p {
    text-align: center;
}
.spcolumn {
    padding: 0px;
    gap: 10px;
    width: 100%;
}
.spcolumn h3 {
    font-size: 20px;
}
.spcolumn a {
    margin: auto;
    display: block;
}
.spcolumn img {
    border-radius: 0px;
}

/* Clients */
#clients {
    margin: 30px auto 10px;
}
#clients #details {
    width: 100%;
    padding: 15px;
    margin: 0px auto;  
}
#clients #details h2 {
    font-size: 30px;
}
.logo-grid {
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    width: 100%;
    padding-bottom: 40px;
}

/* Testimonials */
#testimonials {
    padding: 15px;
    width: 100%;
    margin: 0px auto;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}
#testimonials #detailss {
    padding: 0px;
    width: 100%;
}
#testimonials #detailss h2 {
    font-size: 30px;
    text-align: center; 
}
#testimonials #detailss p {
    text-align: center;
}
.testimonial-card {
    width: 100%;
}

/* Contact */
#contact {
    padding: 20px 20px 30px 20px;
    width: 90%;
    gap: 10px;
    flex-direction: column;
}
#contact #cfirst {
    width: 100%;
}
#contact #cfirst h2 {
    font-size: 30px;
    text-align: center;
}
#contact #cfirst p {
    text-align: center;
}
#contact #csecond {
    width: 100%;
}
#contact #csecond h3 {
    font-size: 18px;
}

/* Thank You */
#thank-you {
    width: 100%;
    padding: 20px;
    margin: 20px auto;   
}
#thank-you h2 {
    font-size: 30px;
}
#thank-you h3 {
    font-size: 18px;
}
#thank-you a:hover {
    opacity: 0.8;
}

/* Cognito Forms */
html .cog-form__container {
    padding: 10px!important;
}
}