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

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

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

/* Top Bar */
.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact-info .info {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}



.top-social .social-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.top-social .social-link:hover {
    color: #c41e3a;
}

/* Main Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #c41e3a;
    line-height: 1.2;
}

.logo-text small {
    font-size: 12px;
    color: #666;
    display: block;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c41e3a;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: bottom;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.section-title.red-title {
    color: #c41e3a;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #fff;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    border-color: #c41e3a;
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    color: #c41e3a;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #a01830;
    transform: scale(1.05);
}

/* Work Process Section */
.work-process-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

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

.process-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.2);
}

.process-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

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

.testimonial-card {
    max-width: 900px;
    margin: 50px auto 30px;
    text-align: center;
}

.quote-icon {
    margin-bottom: 30px;
    display: inline-block;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding: 0 40px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.testimonial-author h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.dot.active {
    background: #c41e3a;
    transform: scale(1.2);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.1);
}

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

.btn-submit {
    background: #c41e3a;
    color: #fff;
    padding: 15px 60px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* Footer */
.main-footer {
    background: #c41e3a;
    color: #fff;
}

.footer-content {
    padding: 20px 20px 20px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-bottom {
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /*.top-bar-content {*/
    /*    flex-direction: column;*/
    /*    gap: 10px;*/
    /*    text-align: center;*/
    /*}*/

    /*.contact-info {*/
    /*    flex-direction: column;*/
    /*    gap: 5px;*/
    /*}*/
    .top-bar {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .testimonial-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .process-card {
        padding: 30px 20px;
    }

    .btn-submit {
        width: 100%;
    }
}






/*about*/

.about-up {	background: #28282a ;
	padding: 0px 0 0px;
}

.content-h {
	text-align: center;
	width:100%;
}
.about{
  display: flex;
  width: 100%;
}
.ceo {
	width: 100%;
	padding-left: 70px;
}
.about-img{
    width:30%;
}
.content-h1 {
	margin: 5px auto 41px;
	text-align: left;
	width: 100%;
}
.ceo_advice .content-h1 > h2 {
	text-align: center;
}
.content-h1 span {
	color: brown;
	font-weight: 600;
}

.content-h hr {
	background: brown none repeat scroll 0 0;
	border: 0 none;
	height: 2px;
	margin: 0 auto 0px;
	position: relative;
	text-align: center;
	width: 90px;
}
.content-h h2 {
	font-size: 50px;
	color: #fff !important;
	font-weight: 300;
	padding-top: 35px;
	margin: 0 0 20px;
	text-transform: uppercase;
	line-height: 77px;
}
.content-h-pera-about {
	padding-bottom: 38px;
	color: #fff !important;
	font-size: 16px;
	font-weight: 300;
	padding-top: 30px;
}

.about-upp {
	margin: 40px 0px 40px 0px;
}
aside.about-in img {
	max-width: 100%;
	margin: 0px auto;
	margin-top: 130px;
	display: block;
}
.content-h1 {
	margin: 5px auto 41px;
	text-align: left;
	width: 100%;
}
.content-h1 h2 {
	color: #000000;
	font-size: 50px;
	font-weight: 500;
	margin: 0 0 20px;
	text-transform: capitalize;
	text-align: center;
}
.content-h1 hr {
	background: brown;
	border: 0 none;
	height: 2px;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
	width: 90px;
}
.ceo_advice .content-h1 hr {
	margin-left: 40%;
}
.row-1{
display: flex;
width: 100%;
}

.execut-hed {
	text-align: right !important;
	font-weight: bold;
	font-size: 22px;
	line-height: 19px !important;
}
.about-para1 p {
	color: #545454;
	margin: 15px 30px;
	text-align: justify;
}
.execut-hed span {
	color: brown;
	font-weight: bold;
	font-size: 15px;
}
.about {
	padding: 15px 0;
	margin: 40px 0;
}
.cleint1 {
	display: flex;
	width: 100%;
}
.cleint1 img {
	margin-top: 61px;
	width: 30%;
	margin-right: 2%;
}
.about-para p {
	color: #545454;
	line-height: 27px;
	margin: 3px 0;
	text-align: justify;
}


@media (max-width: 767px) {
    
    .content-h {
	text-align: center;
	width: 100%;
}
.content-h h2 {
	font-size: 32px;
	line-height: 42px;
}
.about-upp {
	margin: 0px 0 50px;
	text-align: center;
}
.about {
	display: unset;
	width: 100%;
}
.about-img {
	width: 100%;
}
.content-h1 > h2 {
	font-size: 24px;
	margin: 0 0 15px;
}
.ceo {
	width: 100%;
	padding-left: 0px;
}
.about-para1 p {
	color: #545454;
	margin: 15px 20px;
	text-align: justify;
}
.about-para1 p {
	font-size: 15px;
	line-height: 22px;
}
.content-h1 {
	margin: 5px auto 20px;

}
.our-histry {
	padding: 0px 20px;
}

.cleint1 {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-bottom: 20px;
}

}

@media (max-width: 992px) {

.content-h1 h2 {
	font-size: 24px;
	margin: 0 0 20px;
}
aside.about-in img {
	margin-top: 110px;
	display: block;
}
}


/* ===== SERVICES PAGE STYLES ===== */

/* Page Hero Section */
.page-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/hero-service.jpg');;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Business Intelligence Section */
.bi-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #c41e3a;
    margin: 20px auto;
}

.section-description {
    max-width: 1100px;
    margin: 30px auto 0;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    text-align: justify;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-intro {
    max-width: 900px;
    margin: 30px auto 60px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detailed-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.service-detailed-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-detailed-card:hover .service-detailed-icon {
    background: #c41e3a;
}

.service-detailed-card:hover .service-detailed-icon svg {
    stroke: #fff;
}

.service-detailed-card h3 {
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-divider {
    width: 40px;
    height: 2px;
    background: #c41e3a;
    margin: 0 auto 20px;
}

.service-detailed-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
        min-height: 250px;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

}

/* team */

.team-banner {
	height: 450px;
	background: url(/assets/images/team-banner1.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner-text {
	text-align: center;
	width: 100%;
  padding-top: 15%;
}
h1 {
	color: #ffffff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;

}
.main_team {
	margin-top: 60px;
}
.team-pera {
	color: #fff;
	font-size: 35px;
	font-weight: 300;
  
}
.team h1 {

	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;

}
.team-main{
  display: flex;
  flex-wrap: wrap; /* important */
  gap: 20px;
  padding: 50px 0;
}

.content-h-pera {
	padding-bottom: 20px;
	font-size: 20px;
	text-align: center;
}

.box_outer_1 {
	background-color: rgb(241, 241, 241);
	border-radius: 50px 50px 20px 20px;
	position: relative;
	width: 80%;
	margin: 100px auto 10px auto;
	transition: all .4s ease;
}
.box_outer_1 figure {
	text-align: center;
	position: absolute;
	left: 30%;
	top: -70px;
	background-color: brown;
	border-radius: 101px;
	width: 125px;
	height: 125px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box_outer_1 figure img {
	border-radius: 100px;
	width: 117px;
	height: 117px;
}
.name {
	padding-top: 75px;
	text-align: center;
}
.name h2 {
	font-size: 20px;
	font-weight: 500;
	padding-bottom: 10px;
}
.name p {
	font-size: 13px;
	color: brown;
	font-weight: 400;
}
.content_1_name {
	margin-top: 25px !important;
	padding-left: 7px;
	padding-right: 7px;
	padding-bottom: 14px;
}
.content_1_Jyoti {
	margin-top: 25px !important;
	padding-left: 7px;
	padding-right: 7px;
	padding-bottom: 15px;
}
.name_1 {
	padding-top: 89px;
	text-align: center;
	padding-bottom: 44px;
}
p {
	margin: 0 0 0px;
}
.name_1_Jyoti {
	padding-top: 75px;
	text-align: center;
	padding-bottom: 16px;
}
.name_1_Jyoti p {
	font-size: 13px;
	color: brown;
	font-weight: 400;
}
.name_1 p {
	font-size: 12px;
	color: brown;
	font-weight: 400;
}
.col {
	width: 32%;
}
.box_outer_1:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 50px -12px rgb(170 170 170 / 90%);
}

@media (max-width: 767px) {
.col {
	width: 100%;
}
.team-banner {
	height: 450px;

}
.banner-text h1 {
	font-size: 30px;
}
.banner-text {

	padding-top: 36%;
}
.team-pera {
	font-size: 28px;
}
.team_top h1 {
	font-size: 35px;
}
}
@media only screen and (min-width:768px)and (max-width:1024px) {

.col {
	width: 48%;
}
}
