/*
Theme Name: Brovanta New Theme
Theme URI: https://brovanta.com/
Author: Brovanta Team
Author URI: https://brovanta.com/
Description: The custom Brovanta theme with modern design, Swiper slider, and direct client logo embedding.
Version: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brovanta-new-theme
Tags: custom, brovanta, modern, swiper, slider
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reduce top padding for content/page title and above footer for balanced spacing */
body, .site-content, .page-title, .entry-header {
    padding-top: 48px;
}

footer, .footer {
    padding-top: 48px;
}

.site-content, .main-content, .content-area {
    margin-bottom: 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #6366f1;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #6366f1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(99, 102, 241, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #fbbf24;
    color: #333;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Visual with Professional Man and Background Icons */
.hero-man-bg-icons {
    position: relative;
    width: 340px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-man-bg-icons .bg-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.18;
    transition: transform 0.3s;
}
.bg-icon-rocket {
    top: 10px;
    left: 30px;
    transform: rotate(-10deg);
}
.bg-icon-code {
    top: 60px;
    right: 30px;
    transform: rotate(8deg);
}
.bg-icon-palette {
    bottom: 60px;
    left: 40px;
    transform: rotate(-6deg);
}
.bg-icon-video {
    bottom: 20px;
    right: 50px;
    transform: rotate(12deg);
}
.hero-man-img {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #fff;
    border: 6px solid rgba(255,255,255,0.5);
}

.hero-man-img-plain {
    display: block;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

/* Sections */
section {
    padding: 40px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: #f8fafc;
    margin-bottom: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* Ventures Section */
.ventures {
    background: white;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.venture-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.venture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.venture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.venture-icon i {
    font-size: 1.8rem;
    color: white;
}

.venture-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.venture-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.active {
    background: #dcfce7;
    color: #166534;
}

.status.coming-soon {
    background: #fef3c7;
    color: #92400e;
}

/* Services Section */
.services {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 24px;
    background: #6366f1;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}
.service-btn:hover {
    background: #4f46e5;
    color: #fff;
}

/* Work/Stats Section */
.work {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Director Section */
.director {
    background: #f8fafc;
}

.director-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.director-image {
    text-align: center;
}

.director-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.director-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-placeholder {
    text-align: center;
    padding: 4rem 0;
    color: #666;
}

.team-placeholder i {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

/* Clients Section */
.clients {
    background: #f8fafc;
}

.clients-slider {
    width: 100%;
    padding: 2rem 0;
}
.clients-slider .swiper-wrapper {
    align-items: center;
}
.client-logo {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    max-width: 140px;
    margin: 0 auto;
    padding: 1rem;
    transition: box-shadow 0.2s;
}
.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.clients-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .client-logo {
        height: 70px;
        max-width: 90px;
        padding: 0.5rem;
    }
    .client-logo img {
        max-height: 40px;
    }
}

.clients-placeholder {
    text-align: center;
    padding: 4rem 0;
    color: #666;
}

.clients-placeholder i {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

/* Satisfaction Section */
.satisfaction {
    background: white;
}

.satisfaction-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.satisfaction-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.satisfaction-stats {
    text-align: center;
}

.satisfaction-circle {
    display: inline-block;
}

.circle-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#6366f1 0deg 313deg, #e2e8f0 313deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.circle-progress::before {
    content: '';
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    z-index: 1;
    position: relative;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6366f1;
    width: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.contact-form textarea {
    resize: vertical;
}

.view-location-btn {
    display: inline-block;
    margin-left: 1rem;
    padding: 6px 16px;
    background: #6366f1;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}
.view-location-btn:hover {
    background: #4f46e5;
    color: #fff;
}
@media (max-width: 600px) {
    .view-location-btn {
        margin-left: 0.5rem;
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

.locations-grid {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .locations-grid {
    max-width: 100%;
    grid-template-columns: 1fr !important;
  }
}

.location-card {
  min-width: 220px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99,102,241,0.07);
  padding: 1.5rem 1.2rem;
  text-align: left;
  border-left: 4px solid #6366f1;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.location-card h4 {
  margin-bottom: 0.5rem;
  color: #6366f1;
  font-size: 1.15rem;
  font-weight: 700;
}

.location-card p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

.location-card .view-location-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.location-card:hover {
  box-shadow: 0 8px 24px rgba(99,102,241,0.13);
  border-color: #4f46e5;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.footer-legal-menu, .footer-company-menu {
    text-align: center;
    margin: 1rem 0;
}
.footer-legal-list, .footer-company-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 1.5rem;
}
.footer-legal-list li a, .footer-company-list li a {
    color: #666;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-list li a:hover, .footer-company-list li a:hover {
    color: #6366f1;
}
@media (max-width: 600px) {
    .footer-legal-list, .footer-company-list {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: #f1f5f9;
}

.mobile-menu-nav {
    padding: 1rem 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.mobile-menu-nav a:hover {
    background: #f8fafc;
    color: #6366f1;
    padding-left: 2rem;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-social-links a {
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .ventures-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .director-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .satisfaction-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-man-bg-icons {
        width: 220px;
        height: 260px;
    }
    
    .hero-man-img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    section {
        padding: 24px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        margin-bottom: 1rem;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venture-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clients-slider {
        gap: 1rem;
    }
    
    .client-logo {
        max-width: 120px;
        height: 60px;
    }
    
    .circle-progress {
        width: 120px;
        height: 120px;
    }
    
    .circle-progress::before {
        width: 90px;
        height: 90px;
    }
    
    .percentage {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-man-bg-icons {
        width: 160px;
        height: 180px;
    }
    
    .hero-man-img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .venture-card,
    .service-card {
        padding: 1rem;
    }
    
    .venture-icon,
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .venture-icon i,
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .director-image img,
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .clients-slider {
        flex-direction: column;
        gap: 1rem;
    }
    
    .client-logo {
        max-width: 150px;
        height: 80px;
    }
    
    .circle-progress {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress::before {
        width: 75px;
        height: 75px;
    }
    
    .percentage {
        font-size: 1.2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        width: auto;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .venture-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .venture-card p,
    .service-card p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .director-image img,
    .image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress {
        width: 80px;
        height: 80px;
    }
    
    .circle-progress::before {
        width: 60px;
        height: 60px;
    }
    
    .percentage {
        font-size: 1rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .mobile-menu {
        width: 250px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-element {
        transform: translateZ(0);
    }
}

/* Touch-friendly interactions for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px; /* Minimum touch target size */
        padding: 12px 24px;
    }
    
    .venture-card,
    .service-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .mobile-menu-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none;
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .mobile-menu-overlay,
    .back-to-top,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional Hover Effects */
.service-card i {
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.nav-logo h2 {
    transition: transform 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
} 

.director-social-links i {
    font-size: 3rem;
    margin-right: 1.2rem;
}

.footer-social-links i {
    font-size: 3rem;
    margin-right: 1.2rem;
} 

.footer-social-links i.fa-facebook { color: #1877f3; }
.footer-social-links i.fa-instagram { color: #e4405f; }
.footer-social-links i.fa-twitter { color: #1da1f2; }
.footer-social-links i.fa-linkedin { color: #0077b5; }
.footer-social-links i.fa-youtube { color: #ff0000; } 