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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004080;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
}

section {
    padding: 60px 5%;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b00;
    letter-spacing: 1px;
    line-height: 1.2;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: #ff6b00;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?india,technology') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 5%;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    background-color: #ff6b00;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-hero:hover {
    background-color: #e05a00;
    border-color: #e05a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: white;
    color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Showcase Section */
.services-showcase {
    background-color: #fff;
    padding: 80px 0;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: #ff6b00;
    transition: height 0.3s ease;
}

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

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    margin-bottom: 25px;
}

.icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    color: #ff6b00;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #e05a00;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.advantage-box:hover {
    transform: translateY(-10px);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.1);
    line-height: 1;
}

.advantage-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-box p {
    color: #666;
    line-height: 1.6;
}

/* Featured Projects Section */
.featured-projects {
    padding: 80px 0;
    background-color: #fff;
}

.projects-slider {
    position: relative;
    margin-top: 50px;
}

.project-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    flex: 1;
    min-width: 300px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.project-category {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-link {
    display: inline-block;
    color: #ff6b00;
    font-weight: 600;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #e05a00;
    border-color: #e05a00;
}

.project-navigation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #ff6b00;
}

/* Partners Section */
.partners-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.partner-logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #666;
    padding: 20px 30px;
    min-width: 150px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: relative;
    padding: 0 20px;
}

.testimonial-quote:before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(255, 107, 0, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.author-details p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b00, #ff9d4d);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1600x900/?pattern') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content h2:after {
    display: none;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: white;
    color: #ff6b00;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

/* Footer Styles */
.new-footer {
    background-color: #222;
    color: #ccc;
    padding: 0;
}

.footer-top {
    background-color: #1a1a1a;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b00;
    letter-spacing: 1px;
}

.footer-logo .tagline {
    font-size: 1rem;
    color: #999;
    letter-spacing: 2px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6b00;
    transform: translateY(-5px);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 5%;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b00;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #aaa;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #aaa;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b00;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b00;
    padding-left: 20px;
}

.footer-section ul li a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/servicesbanner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 5%;
}

.page-banner h1 {
    color: white;
    margin-bottom: 15px;
}

/* About Page Styles */
/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 80px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://source.unsplash.com/random/1600x900/?technology,pattern');
    opacity: 0.1;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.about-hero-content .highlight {
    color: #ffcc00;
    position: relative;
    display: inline-block;
}

.about-hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 204, 0, 0.3);
    z-index: -1;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 180px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 5px;
}

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

/* About Story Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-story {
    padding: 80px 0;
    background-color: #fff;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading.center {
    text-align: center;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 10px;
    padding: 5px 15px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    position: relative;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0066cc;
    color: white;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card, .vision-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: #ff6b00;
}

.mission-card h2, .vision-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    line-height: 1.6;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #ff6b00;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.6;
    color: #555;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.leadership-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.leader-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    height: 250px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 20px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.leader-position {
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    width: 35px;
    height: 35px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background-color: #ff6b00;
    color: white;
}

/* Journey Timeline Section */
.journey-timeline {
    padding: 80px 0;
    background-color: #fff;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #ff6b00;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ff6b00;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    position: absolute;
    top: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff6b00;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -80px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -80px;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    line-height: 1.6;
    color: #555;
}

/* Global Presence Section */
.global-presence {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    position: relative;
}

.world-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.world-map img {
    width: 100%;
    height: auto;
    display: block;
}

.office-locations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.office-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.office-icon i {
    font-size: 1.2rem;
    color: #ff6b00;
}

.office-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.office-card p {
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(0, 102, 204, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Services Page Styles */
.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 20px 15px;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-category {
    margin-bottom: 80px;
    padding: 0 15px;
}

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

.service-box {
    padding: 30px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b00;
}

.service-features {
    margin-top: 15px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    color: #ff6b00;
    position: absolute;
    left: -20px;
}

.methodology {
    text-align: center;
    background-color: #f8f8f8;
    padding: 70px 0;
    margin-bottom: 80px;
}

.methodology h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.methodology-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.methodology-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 18%;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.industries {
    text-align: center;
}

.industries h2:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.industry {
    padding: 30px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.industry:hover {
    transform: translateY(-10px);
}

/* Case Studies Page Styles */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/servicesbanner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 5%;
    position: relative;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.case-studies-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px 20px;
    background-color: #fff;
}

.case-studies-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.featured-case-study {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 60px;
}

.case-study-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-content h2 {
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.case-study-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
}

.case-study-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.case-study-info {
    flex: 2;
    min-width: 300px;
}

.case-study-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study-info h3 {
    margin: 30px 0 15px;
    color: #333;
    font-size: 22px;
    color: #ff6b00;
}

.case-study-info ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.case-study-info li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.case-study-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
}

.case-studies-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.case-studies-grid h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.case-studies-grid h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-text {
    padding: 25px;
}

.case-study-text h3 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.case-study-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b00;
}

.case-study-text p {
    margin: 0 0 20px;
    color: #666;
    line-height: 1.6;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ff6b00;
}

.btn-small:hover {
    background-color: transparent;
    color: #ff6b00;
}

.client-testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
}

.client-testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1600x900/?pattern') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.client-testimonials .container {
    position: relative;
    z-index: 1;
}

.client-testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.client-testimonials h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(255, 107, 0, 0.1);
    font-family: Georgia, serif;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #ff6b00;
}

.offices {
    text-align: center;
    background-color: #f8f8f8;
}

.offices h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.cta {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    padding: 80px 5%;
    color: white;
}

.cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.cta h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta .btn {
    background-color: #ff6b00;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.cta .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

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

.office {
    padding: 30px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.office:hover {
    transform: translateY(-10px);
}

.global-presence {
    text-align: center;
}

.global-presence h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.global-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.global-office {
    padding: 30px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.global-office:hover {
    transform: translateY(-10px);
}

.careers-cta {
    text-align: center;
    background-color: #f8f8f8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-intro,
    .mission-vision,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        flex-direction: column;
    }
    
    .methodology-steps:before {
        display: none;
    }
    
    .step {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px 5%;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 5%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 80px 5%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}

/* New Section Styles */
.new-section {
    padding: 70px 15px;
    margin-bottom: 80px;
    background-color: #fff;
}

.new-section .new-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.new-section h3 {
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.new-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
}

.new-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Indian Cultural Elements */
.page-banner, .hero {
    border-bottom: 5px solid #ff6b00;
}

.btn, .step-number {
    background: linear-gradient(135deg, #ff6b00, #ff9d00);
}

.feature-box, .service-box, .office, .global-office, .team-member, .value-box {
    border-top: 3px solid #ff6b00;
}

.logo {
    position: relative;
}

.logo:after {
    content: '';
    position: absolute;
    top: -5px;
    right: -15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
}