
/* CSS Variables - Tech Theme */
:root {
--dark-blue: #1a365d;
--darker-blue: #0f2043;
--accent-orange: #ff7846;
--light-orange: #fff0eb;
--light-blue: #e9f0fa;
--white: #ffffff;
--black: #0f0f0f;
--transition-fast: all 0.3s ease;
--transition-medium: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
--transition-slow: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
--shadow-light: 8px 8px 0px rgba(26, 54, 93, 0.2);
--shadow-medium: 12px 12px 0px rgba(26, 54, 93, 0.3);
--shadow-heavy: 16px 16px 0px rgba(26, 54, 93, 0.4);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="8" y="8" width="8" height="8" fill="%23ff7846" opacity="0.8"/></svg>'), auto;
}
/* Preloader Styles */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #0f2043;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease-out;
}
.preloader.hidden {
opacity: 0;
pointer-events: none;
}
.preloader-content {
text-align: center;
position: relative;
}
.preloader-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  animation: pulse 1.5s infinite ease-in-out;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a365d, #0f2043);
  box-shadow: 0 8px 32px rgba(255, 120, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.preloader-logo img {
max-width: 100%;
max-height: 100%;
border-radius: 50%;
}
.preloader-text {
color: #fff;
font-size: 1.5rem;
margin-bottom: 25px;
font-family: 'Space Grotesk', sans-serif;
letter-spacing: 2px;
}
.progress-container {
width: 300px;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
margin: 0 auto;
}
.progress-bar {
height: 100%;
width: 0%;
background: linear-gradient(90deg, #ff7846, #ff9e7d);
border-radius: 4px;
transition: width 0.3s ease;
}
.loading-dots {
display: flex;
justify-content: center;
margin-top: 20px;
}
.dot {
width: 12px;
height: 12px;
background: #ff7846;
border-radius: 50%;
margin: 0 6px;
animation: bounce 1.5s infinite ease-in-out;
}
.dot:nth-child(2) {
animation-delay: 0.2s;
}
.dot:nth-child(3) {
animation-delay: 0.4s;
}
.logo img {
width: 100px;
height: 100px;
border-radius: 50%;
animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0.7); }
70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 120, 70, 0); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0); }
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
body {
font-family: 'Space Grotesk', sans-serif;
background-color: var(--white);
color: var(--black);
overflow-x: hidden;
line-height: 1.6;
position: relative;
-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5 {
font-family: 'Libre Baskerville', serif;
font-weight: 700;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: var(--white);
}
::-webkit-scrollbar-thumb {
background: var(--dark-blue);
border: 3px solid var(--white);
border-radius: 0;
}
/* Top Bar */
.top-bar {
background-color: var(--dark-blue);
color: var(--white);
padding: 12px 0;
font-size: 0.9rem;
}
.top-bar-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
max-width: 1400px;
margin: 0 auto;
}
.top-contact {
display: flex;
align-items: center;
gap: 30px;
}
.top-contact a {
color: var(--white);
text-decoration: none;
transition: var(--transition-fast);
display: flex;
align-items: center;
gap: 8px;
}
.top-contact a:hover {
color: var(--accent-orange);
}
.app-download {
display: flex;
align-items: center;
gap: 15px;
}
.app-download a {
color: var(--white);
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
transition: var(--transition-fast);
}
.app-download a:hover {
color: var(--accent-orange);
}
/* Header & Navigation */
header {
position: sticky;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 25px 0 20px;
transition: var(--transition-medium);
display: flex;
justify-content: center;
background-color: var(--white);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
header.scrolled {
padding: 15px 0 10px;
box-shadow: 5px 5px 0px rgba(26, 54, 93, 0.1);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
max-width: 1400px;
position: relative;
}
.logo {
font-family: 'Libre Baskerville', serif;
font-size: 2.8rem;
font-weight: 700;
text-decoration: none;
color: var(--dark-blue);
position: relative;
line-height: 0.9;
transform: rotate(-1deg);
transition: var(--transition-fast);
display: flex;
flex-direction: column;
}
.logo:hover {
transform: rotate(0deg);
color: var(--accent-orange);
}
.logo span {
color: var(--accent-orange);
font-size: 1rem;
transform: rotate(1deg);
margin-top: -5px;
letter-spacing: 2px;
}
nav {
position: relative;
}
nav ul {
display: flex;
list-style: none;
gap: 5px;
flex-wrap: wrap;
max-width: 950px;
justify-content: flex-end;
}
nav ul li {
transform: translateY(0);
opacity: 1;
}
nav ul li a {
color: var(--dark-blue);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
padding: 10px 15px;
border: 3px solid var(--dark-blue);
display: block;
transform: rotate(-1deg);
transition: var(--transition-fast);
background-color: var(--white);
margin: 4px;
}
nav ul li a:hover {
background-color: var(--dark-blue);
color: var(--white);
transform: rotate(0deg) translateY(-5px);
box-shadow: var(--shadow-medium);
}
.enroll-btn {
background-color: var(--accent-orange) !important;
color: var(--white) !important;
border-color: var(--accent-orange) !important;
}
.enroll-btn:hover {
background-color: var(--dark-blue) !important;
border-color: var(--dark-blue) !important;
}
.mobile-toggle {
display: none;
background: none;
border: 3px solid var(--dark-blue);
color: var(--dark-blue);
font-size: 1.5rem;
cursor: pointer;
padding: 10px;
position: absolute;
right: 0;
top: 10px;
z-index: 1001;
}
/* Projects Section */
.projects-wrapper {
background: var(--dark-blue);
color: var(--white);
padding: 100px 0;
}
.projects-container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
.section-title {
text-align: center;
margin-bottom: 70px;
position: relative;
padding: 0 20px;
}
.section-title h2 {
font-size: 4rem;
color: var(--white);
display: inline-block;
position: relative;
transform: rotate(-2deg);
background: var(--dark-blue);
padding: 0 30px;
box-shadow: var(--shadow-medium);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 60px;
}
.project-card {
background: var(--white);
padding: 30px;
box-shadow: var(--shadow-medium);
border: 6px solid var(--accent-orange);
position: relative;
transform: rotate(-2deg);
transition: var(--transition-medium);
color: var(--dark-blue);
height: 100%;
display: flex;
flex-direction: column;
}
.project-card:nth-child(even) {
transform: rotate(2deg);
}
.project-card:hover {
transform: rotate(0deg) translateY(-15px);
box-shadow: var(--shadow-heavy);
}
.project-icon {
font-size: 3rem;
color: var(--accent-orange);
margin-bottom: 20px;
text-align: center;
}
.project-card h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--dark-blue);
text-align: center;
}
.project-card p {
margin-bottom: 25px;
flex-grow: 1;
}
.project-card ul {
margin-bottom: 25px;
padding-left: 20px;
}
.project-card ul li {
margin-bottom: 10px;
position: relative;
}
.project-card ul li:before {
content: "▶";
position: absolute;
left: -20px;
color: var(--accent-orange);
}
.project-btn {
margin-top: auto;
text-align: center;
display: flex;
flex-direction: column;
gap: 15px;
}
.btn {
padding: 15px 30px;
text-decoration: none;
font-weight: 700;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
transition: var(--transition-medium);
position: relative;
border: 4px solid var(--dark-blue);
background: var(--white);
transform: rotate(-1deg);
font-family: 'Space Grotesk', sans-serif;
display: inline-block;
}
.btn.btn-primary {
background-color: var(--dark-blue);
color: var(--white);
}
.btn:hover {
transform: rotate(0deg) translateY(-10px);
box-shadow: var(--shadow-heavy);
}
.btn.btn-primary:hover {
background-color: var(--accent-orange);
color: var(--white);
border-color: var(--accent-orange);
}
.btn-external {
background: linear-gradient(45deg, var(--accent-orange), #ff9e7d);
color: var(--white);
border: none;
box-shadow: 0 4px 15px rgba(255, 120, 70, 0.4);
position: relative;
overflow: hidden;
}
.btn-external:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transition: left 0.5s;
}
.btn-external:hover:before {
left: 100%;
}
.btn-external:hover {
transform: rotate(0deg) translateY(-10px) scale(1.05);
box-shadow: 0 8px 25px rgba(255, 120, 70, 0.6);
}
.btn-external i {
margin-left: 8px;
}

/* Project Showcase Section */
.project-showcase {
background: var(--light-blue);
padding: 100px 0;
}
.showcase-container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.showcase-item {
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow-medium);
transition: var(--transition-medium);
position: relative;
}
.showcase-item:hover {
transform: translateY(-15px);
box-shadow: var(--shadow-heavy);
}
.showcase-img {
height: 255px;
overflow: hidden;
position: relative;
}
.showcase-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-medium);
}
.showcase-item:hover .showcase-img img {
transform: scale(1.1);
}
.showcase-content {
padding: 25px;
}
.showcase-content h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark-blue);
}
.showcase-content p {
margin-bottom: 20px;
color: var(--darker-blue);
}
.showcase-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.tag {
background: var(--light-orange);
color: var(--accent-orange);
padding: 5px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

/* Project Process Section */
.project-process {
background: var(--white);
padding: 100px 0;
}
.process-container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
.process-timeline {
position: relative;
margin-top: 60px;
padding-left: 30px;
}
.process-timeline:before {
content: "";
position: absolute;
left: 15px;
top: 0;
height: 100%;
width: 4px;
background: var(--light-blue);
}
.process-item {
position: relative;
margin-bottom: 50px;
padding-left: 60px;
}
.process-item:last-child {
margin-bottom: 0;
}
.process-item:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--accent-orange);
border: 4px solid var(--white);
box-shadow: var(--shadow-light);
}
.process-number {
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--accent-orange);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1rem;
box-shadow: var(--shadow-light);
}
.process-content {
background: var(--light-blue);
padding: 25px;
border-radius: 10px;
box-shadow: var(--shadow-light);
}
.process-content h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark-blue);
}

/* Testimonials Section */
.testimonials {
background: var(--darker-blue);
color: var(--white);
padding: 100px 0;
}
.testimonials-container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 10px;
border-left: 5px solid var(--accent-orange);
position: relative;
}

.testimonial-card:before {
content: """;
position: absolute;
top: 10px;
left: 15px;
font-size: 4rem;
color: rgba(255, 120, 70, 0.3);
font-family: 'Libre Baskerville', serif;
}

.testimonial-content {
margin-bottom: 20px;
font-style: italic;
position: relative;
z-index: 1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}
.author-img {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
border: 3px solid var(--accent-orange);
}
.author-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-info h4 {
font-size: 1.1rem;
margin-bottom: 5px;
}
.author-info p {
font-size: 0.9rem;
opacity: 0.8;
}

/* Call to Action Section */
.cta-section {
background: linear-gradient(135deg, var(--dark-blue), var(--darker-blue));
color: var(--white);
padding: 80px 0;
text-align: center;
}
.cta-container {
width: 90%;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.cta-content p {
font-size: 1.2rem;
margin-bottom: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

/* Footer - Responsive Design */
footer {
background: var(--darker-blue);
color: var(--white);
padding: 80px 50px 50px;
position: relative;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 50px;
margin-bottom: 60px;
}
.footer-col h3 {
font-size: 1.8rem;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
transform: rotate(-2deg);
display: inline-block;
border: 4px solid var(--white);
padding: 10px 20px;
}
.footer-about p {
margin-bottom: 30px;
font-weight: 300;
font-size: 1rem;
transform: rotate(1deg);
max-width: 300px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 20px;
transform: rotate(-1deg);
}
.footer-links a {
color: var(--light-orange);
text-decoration: none;
transition: var(--transition-fast);
font-weight: 500;
font-size: 1rem;
padding: 8px 12px;
border: 3px solid transparent;
display: inline-block;
}
.footer-links a:hover {
border-color: var(--accent-orange);
color: var(--accent-orange);
transform: rotate(0deg) translateX(10px);
}
.footer-hours {
display: flex;
flex-direction: column;
gap: 15px;
transform: none;
}
.hours-row {
display: flex;
justify-content: space-between;
padding: 12px 0;
border-bottom: 3px solid rgba(255, 255, 255, 0.1);
transform: rotate(-1deg);
}
.hours-day {
opacity: 0.9;
font-weight: 500;
}
.hours-time {
font-weight: 700;
color: var(--accent-orange);
}
.social-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
max-width: 250px;
}
.social-item {
width: 50px;
height: 50px;
border: 4px solid var(--white);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 1.2rem;
transition: var(--transition-medium);
transform: rotate(-3deg);
}
.social-item:hover {
background: var(--accent-orange);
color: var(--white);
transform: rotate(0deg) translateY(-10px);
box-shadow: var(--shadow-medium);
border-color: var(--accent-orange);
}
.footer-bottom {
text-align: center;
padding-top: 40px;
border-top: 4px solid rgba(255, 255, 255, 0.1);
font-size: 1rem;
opacity: 0.8;
font-weight: 500;
letter-spacing: 1px;
transform: rotate(1deg);
}

/* Scroll to Top Button */
.scroll-to-top {
position: fixed;
bottom: 50px;
right: 50px;
width: 70px;
height: 70px;
background: var(--dark-blue);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
box-shadow: var(--shadow-medium);
cursor: pointer;
transition: var(--transition-medium);
z-index: 999;
opacity: 0;
visibility: hidden;
transform: translateY(20px) rotate(-3deg);
border: 4px solid var(--white);
margin-bottom: 65px;
}
.scroll-to-top.show {
opacity: 1;
visibility: visible;
transform: translateY(0) rotate(0deg);
}
.scroll-to-top:hover {
background: var(--accent-orange);
transform: translateY(-10px) rotate(0deg) scale(1.1);
box-shadow: var(--shadow-heavy);
}
/* Animation for page load */
.slide-up {
opacity: 0;
transform: translateY(50px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-up.appear {
opacity: 1;
transform: translateY(0);
}

/* CSS for Floating Social Media Icons - Same as provided code */
.floating-social {
position: fixed;
left: 5px;
bottom: 30px;
z-index: 998;
display: flex;
flex-direction: column;
gap: 12px;
}

.social-icon {
position: relative;
width: 45px;
height: 45px;
border: 3px solid var(--dark-blue);
background: var(--white);
display: flex;
align-items: center;
justify-content: center;
color: var(--dark-blue);
font-size: 1.2rem;
text-decoration: none;
transform: rotate(-2deg);
transition: var(--transition-medium);
box-shadow: var(--shadow-light);
}

.social-icon:hover {
transform: rotate(0deg) translateX(5px);
box-shadow: var(--shadow-medium);
}

.social-icon.youtube:hover {
background: #FF0000;
color: var(--white);
border-color: #FF0000;
}

.social-icon.instagram:hover {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
color: var(--white);
border-color: #dc2743;
}

.social-icon.twitter:hover {
background: #1DA1F2;
color: var(--white);
border-color: #1DA1F2;
}

.social-icon.facebook:hover {
background: #4267B2;
color: var(--white);
border-color: #4267B2;
}

.social-icon.whatsapp:hover {
background: #25D366;
color: var(--white);
border-color: #25D366;
}

.tooltip {
position: absolute;
left: 55px;
top: 50%;
transform: translateY(-50%);
background: var(--dark-blue);
color: var(--white);
padding: 6px 12px;
border-radius: 4px;
font-size: 0.8rem;
font-weight: 600;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: var(--transition-fast);
box-shadow: var(--shadow-light);
}

.tooltip::before {
content: '';
position: absolute;
left: -6px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-right: 6px solid var(--dark-blue);
}

.social-icon:hover .tooltip {
opacity: 1;
visibility: visible;
transform: translateY(-50%) translateX(5px);
}

/* Animation for initial appearance */
@keyframes socialBounceIn {
0% {
opacity: 0;
transform: translateY(50px) rotate(-5deg);
}
60% {
transform: translateY(-5px) rotate(1deg);
}
100% {
opacity: 1;
transform: translateY(0) rotate(-2deg);
}
}

.social-icon {
animation: socialBounceIn 0.8s ease-out forwards;
opacity: 0;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 992px) {
.floating-social {
left: 3px;
bottom: 25px;
}

.social-icon {
width: 40px;
height: 40px;
font-size: 1.1rem;
}

/* Project Showcase adjustments for tablets */
.showcase-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

/* Testimonials adjustments for tablets */
.testimonials-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

/* Project Process adjustments for tablets */
.process-timeline {
padding-left: 20px;
}
.process-timeline:before {
left: 10px;
}
.process-item {
padding-left: 40px;
}
.process-item:before, .process-number {
left: -5px;
width: 25px;
height: 25px;
}

/* Adjust section padding for tablets */
.projects-wrapper, .project-showcase, .project-process, .testimonials, .cta-section {
padding: 80px 0;
}
}

@media (max-width: 768px) {
body {
padding-bottom: 80px;
}

.floating-social {
flex-direction: row;
left: 50%;
bottom: 20px;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.9);
padding: 8px 12px;
border-radius: 40px;
border: 3px solid var(--dark-blue);
box-shadow: var(--shadow-medium);
gap: 10px;
justify-content: center;
}

.social-icon {
width: 35px;
height: 35px;
font-size: 1rem;
}

.tooltip {
display: none;
}

@keyframes socialBounceIn {
0% {
opacity: 0;
transform: translateY(30px) rotate(-5deg);
}
60% {
transform: translateY(-5px) rotate(1deg);
}
100% {
opacity: 1;
transform: translateY(0) rotate(-2deg);
}
}

.mobile-toggle {
display: block;
}

nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: var(--white);
padding: 100px 20px 40px;
box-shadow: var(--shadow-medium);
clip-path: circle(0px at top right);
transition: var(--transition-medium);
z-index: 999;
overflow-y: auto;
}

nav.active {
clip-path: circle(150% at top right);
}

nav ul {
flex-direction: column;
gap: 15px;
align-items: center;
}

nav ul li a {
width: 100%;
text-align: center;
transform: none;
margin: 5px 0;
}

.projects-grid {
grid-template-columns: 1fr;
}

/* Project Showcase adjustments for mobile */
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}

/* Testimonials adjustments for mobile */
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}

/* Project Process adjustments for mobile */
.process-timeline {
padding-left: 15px;
}
.process-timeline:before {
left: 7px;
}
.process-item {
padding-left: 30px;
margin-bottom: 40px;
}
.process-item:before, .process-number {
left: -8px;
width: 20px;
height: 20px;
font-size: 0.9rem;
}
.process-content h3 {
font-size: 1.3rem;
}

.section-title h2 {
font-size: 2.5rem;
}

/* Adjust section padding for mobile */
.projects-wrapper, .project-showcase, .project-process, .testimonials, .cta-section {
padding: 60px 0;
}

/* Container padding adjustments */
.projects-container, .showcase-container, .process-container, .testimonials-container, .cta-container {
padding: 0 15px;
}

/* Footer adjustments for mobile */
footer {
padding: 60px 30px 40px;
}

.footer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}

.footer-col h3 {
font-size: 1.6rem;
padding: 8px 16px;
}

.footer-about p {
font-size: 0.95rem;
max-width: 100%;
}

.footer-links a {
font-size: 0.95rem;
padding: 6px 10px;
}

.social-grid {
max-width: 220px;
grid-template-columns: repeat(4, 1fr);
}

.social-item {
width: 45px;
height: 45px;
font-size: 1.1rem;
}

.scroll-to-top {
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
font-size: 1.5rem;
}
}

@media (max-width: 576px) {
.top-bar-container {
flex-direction: column;
gap: 15px;
}

.logo {
font-size: 2.2rem;
}

.section-title h2 {
font-size: 2.2rem;
}

/* Project Process adjustments for small mobile */
.process-timeline {
padding-left: 10px;
}
.process-timeline:before {
left: 5px;
}
.process-item {
padding-left: 25px;
margin-bottom: 30px;
}
.process-item:before, .process-number {
left: -10px;
width: 18px;
height: 18px;
font-size: 0.8rem;
}
.process-content {
padding: 20px;
}
.process-content h3 {
font-size: 1.2rem;
}

/* Adjust section padding for small mobile */
.projects-wrapper, .project-showcase, .project-process, .testimonials, .cta-section {
padding: 50px 0;
}

/* Footer adjustments for small mobile */
footer {
padding: 50px 20px 30px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.footer-col {
text-align: center;
}

.footer-col h3 {
font-size: 1.5rem;
margin-bottom: 20px;
transform: none;
}

.footer-about p {
transform: none;
margin: 0 auto 25px;
font-size: 0.9rem;
}

.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}

.footer-links li {
transform: none;
margin-bottom: 0;
}

.footer-links a {
transform: none;
padding: 8px 12px;
font-size: 0.9rem;
}

.footer-links a:hover {
transform: none;
border-color: var(--accent-orange);
}

.footer-hours {
align-items: center;
}

.hours-row {
transform: none;
width: 100%;
max-width: 300px;
margin: 0 auto;
}

.social-grid {
margin: 0 auto;
max-width: 200px;
}

.social-item {
width: 40px;
height: 40px;
font-size: 1rem;
}

.footer-bottom {
font-size: 0.85rem;
padding-top: 30px;
transform: none;
}
}

@media (max-width: 480px) {
/* Adjust section padding for very small mobile */
.projects-wrapper, .project-showcase, .project-process, .testimonials, .cta-section {
padding: 40px 0;
}

.section-title h2 {
font-size: 2rem;
}

.process-content {
padding: 15px;
}
.process-content h3 {
font-size: 1.1rem;
}

/* Container padding adjustments */
.projects-container, .showcase-container, .process-container, .testimonials-container, .cta-container {
padding: 0 10px;
}

.btn {
padding: 12px 25px;
font-size: 0.9rem;
}

/* Footer adjustments for very small mobile */
footer {
padding: 40px 15px 20px;
}

.footer-col h3 {
font-size: 1.3rem;
padding: 6px 12px;
}

.footer-about p {
font-size: 0.85rem;
margin-bottom: 15px;
}

.footer-links a {
font-size: 0.85rem;
padding: 6px 10px;
}

.social-grid {
max-width: 180px;
gap: 10px;
}

.social-item {
width: 35px;
height: 35px;
font-size: 0.9rem;
}

.footer-bottom {
font-size: 0.8rem;
padding-top: 25px;
}
}

@media (max-width: 375px) {
.section-title h2 {
font-size: 1.8rem;
}

.btn {
padding: 10px 20px;
font-size: 0.85rem;
}

/* Footer adjustments for very small mobile */
footer {
padding: 30px 10px 15px;
}

.footer-col h3 {
font-size: 1.2rem;
padding: 5px 10px;
}

.footer-about p {
font-size: 0.8rem;
margin-bottom: 15px;
}

.footer-links a {
font-size: 0.8rem;
padding: 5px 8px;
}

.social-grid {
max-width: 160px;
gap: 8px;
}

.social-item {
width: 30px;
height: 30px;
font-size: 0.85rem;
}

.footer-bottom {
font-size: 0.75rem;
padding-top: 20px;
}
}

/* Specific device adjustments */
/* iPhone SE (375x667) */
@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.process-timeline {
padding-left: 10px;
}
.process-item {
padding-left: 25px;
}
}

/* iPhone XR (414x896) */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* iPhone 12 Pro (390x844) */
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* iPhone 14 Pro Max (430x932) */
@media only screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* Pixel 7 (412x892) */
@media only screen and (device-width: 412px) and (device-height: 892) and (-webkit-device-pixel-ratio: 2.625) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* Samsung Galaxy S8+ (360x740) */
@media only screen and (device-width: 360px) and (device-height: 740) and (-webkit-device-pixel-ratio: 4) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.process-timeline {
padding-left: 10px;
}
.process-item {
padding-left: 25px;
}
}

/* Samsung Galaxy S20 Ultra (412x915) */
@media only screen and (device-width: 412px) and (device-height: 915) and (-webkit-device-pixel-ratio: 3) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* iPad Mini (768x1024) */
@media only screen and (device-width: 768px) and (device-height: 1024) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.process-timeline {
padding-left: 20px;
}
.process-item {
padding-left: 40px;
}
}

/* iPad Air (820x1180) */
@media only screen and (device-width: 820px) and (device-height: 1180) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.process-timeline {
padding-left: 25px;
}
.process-item {
padding-left: 45px;
}
}

/* iPad Pro (1024x1366) */
@media only screen and (device-width: 1024px) and (device-height: 1366) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.testimonials-grid {
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.process-timeline {
padding-left: 30px;
}
.process-item {
padding-left: 60px;
}
}

/* Surface Pro 7 (912x1368) */
@media only screen and (device-width: 912px) and (device-height: 1368) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.process-timeline {
padding-left: 25px;
}
.process-item {
padding-left: 45px;
}
}

/* Surface Duo (540x720) */
@media only screen and (device-width: 540px) and (device-height: 720) and (-webkit-device-pixel-ratio: 2.5) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* Galaxy Z Fold 5 (344x882) */
@media only screen and (device-width: 344px) and (device-height: 882) and (-webkit-device-pixel-ratio: 3) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.process-timeline {
padding-left: 10px;
}
.process-item {
padding-left: 20px;
}
}

/* Samsung Galaxy A51/71 (412x914) */
@media only screen and (device-width: 412px) and (device-height: 914) and (-webkit-device-pixel-ratio: 2.625) {
.showcase-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.process-timeline {
padding-left: 15px;
}
.process-item {
padding-left: 30px;
}
}

/* Nest Hub (1024x600) */
@media only screen and (device-width: 1024px) and (device-height: 600) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.testimonials-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.process-timeline {
padding-left: 30px;
}
.process-item {
padding-left: 60px;
}
}

/* Nest Hub Max (1280x800) */
@media only screen and (device-width: 1280px) and (device-height: 800) and (-webkit-device-pixel-ratio: 2) {
.showcase-grid {
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.testimonials-grid {
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.process-timeline {
padding-left: 30px;
}
.process-item {
padding-left: 60px;
}
}







/* Add these media queries at the end of your existing CSS */

/* iPad Air (820x1180) */
@media only screen and (device-width: 820px) and (device-height: 1180) and (-webkit-device-pixel-ratio: 2) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .project-card {
    padding: 25px;
  }
  .project-card h3 {
    font-size: 1.6rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-card ul li {
    font-size: 0.9rem;
  }
}

/* iPad Pro (1024x1366) */
@media only screen and (device-width: 1024px) and (device-height: 1366) and (-webkit-device-pixel-ratio: 2) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .project-card {
    padding: 25px;
  }
  .project-card h3 {
    font-size: 1.7rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-card ul li {
    font-size: 0.9rem;
  }
}

/* Surface Pro 7 (912x1368) */
@media only screen and (device-width: 912px) and (device-height: 1368) and (-webkit-device-pixel-ratio: 2) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .project-card {
    padding: 25px;
  }
  .project-card h3 {
    font-size: 1.6rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-card ul li {
    font-size: 0.9rem;
  }
}

/* Nest Hub (1024x600) */
@media only screen and (device-width: 1024px) and (device-height: 600) and (-webkit-device-pixel-ratio: 2) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .project-card {
    padding: 20px;
  }
  .project-card h3 {
    font-size: 1.5rem;
  }
  .project-card p {
    font-size: 0.9rem;
  }
  .project-card ul li {
    font-size: 0.85rem;
  }
}

/* Nest Hub Max (1280x800) */
@media only screen and (device-width: 1280px) and (device-height: 800) and (-webkit-device-pixel-ratio: 2) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .project-card {
    padding: 25px;
  }
  .project-card h3 {
    font-size: 1.7rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-card ul li {
    font-size: 0.9rem;
  }
}

/* General tablet fix for devices between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .project-card {
    padding: 25px;
  }
  .project-card h3 {
    font-size: 1.6rem;
  }
  .project-card p {
    font-size: 0.95rem;
  }
  .project-card ul li {
    font-size: 0.9rem;
  }
}



/* For Tablets (iPad, Surface Pro, Nest Hub) */
@media (max-width: 1024px) {
    footer {
        padding: 60px 30px 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-col h3 {
        font-size: 1.6rem;
    }
}



@media (max-width: 768px) {
    footer {
        padding: 50px 20px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
        gap: 35px;
    }
    .footer-col {
        text-align: center; /* Center content on mobile */
    }
    .footer-col h3 {
        transform: none; /* Remove rotation on mobile */
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .footer-about p {
        transform: none;
        margin: 0 auto 25px;
    }
    .footer-links {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-links li {
        transform: none;
        margin-bottom: 0;
    }
    .footer-links a:hover {
        transform: none; /* Disable hover movement on mobile */
    }
    .hours-row {
        transform: none;
        max-width: 300px;
        margin: 0 auto;
    }
    .social-grid {
        margin: 0 auto;
    }
    .footer-bottom {
        transform: none;
    }
}
