body {
    font-family: 'Poppins', sans-serif;
    font-family: "Righteous", sans-serif;
    font-family: "Reddit Sans", sans-serif;


}

/* whasapp code */

.whatsapp-container{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
}

.whatsapp-btn{
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(37,211,102,0.35);
    animation:pulse 2s infinite;
    transition:0.3s ease;
}

.whatsapp-btn:hover{
    transform:scale(1.12) translateY(-5px);
}

.whatsapp-tooltip{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    background:#111;
    color:#fff;
    padding:10px 15px;
    border-radius:8px;
    font-size:14px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.whatsapp-container:hover .whatsapp-tooltip{
    opacity:1;
    visibility:visible;
    right:90px;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.5);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){
    .whatsapp-btn{
        width:58px;
        height:58px;
        font-size:28px;
    }

    .whatsapp-tooltip{
        display:none;
    }
}




.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

.righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* Button  */

.btn-arrow{
    margin-top: 20px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 34px;
    background:#744db9;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-family:"Reddit Sans",sans-serif;
    font-weight:600;
    transition:.35s;
}

.btn-arrow span{
    transition:.35s;
}

.btn-arrow:hover{
    background:#5f3ea6;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(116,77,185,.35);
}

.btn-arrow:hover span{
    transform:translateX(8px);
}

.btn-gradient{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 38px;
    background:linear-gradient(135deg,#4b2a84,#744db9,#9b6dff);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.btn-gradient::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );
    transition:.7s;
}

.btn-gradient:hover::before{
    left:100%;
}

.btn-gradient:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(116,77,185,.45);
}


/* navebar codes */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Reddit Sans", sans-serif;
}


 /* gallery code */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f8f9fa;
}

/* Section */
.gallery-section{
    width:90%;
    margin:auto;
    padding:80px 0;
}

/* Title */
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    position:relative;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:3px;
    background:#d4a017;
    display:block;
    margin:15px auto 0;
}

/* Grid */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* Box */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s ease;
}

/* Hover */
.gallery-item:hover img{
    transform:scale(1.08);
}

/* Overlay */
.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}

/* Responsive */
@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }
}



#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:85%;
    max-height:85%;
    border-radius:12px;
}

.close-btn,
.prev-btn,
.next-btn{
    position:absolute;
    color:white;
    font-size:40px;
    cursor:pointer;
    user-select:none;
}

.close-btn{
    top:20px;
    right:35px;
}

.prev-btn{
    left:30px;
    top:50%;
    transform:translateY(-50%);
}

.next-btn{
    right:30px;
    top:50%;
    transform:translateY(-50%);
}

/* dropdown menu */


.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: #333;
    transition: 0.3s;
}

/* .dropdown-menu li a:hover {
    background: #744db9;
    color: #000000;
} */

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block !important;
}

 

/* Container */

.container {
    width: 90%;
    margin: auto;
}

/* Top Header */

.top-header {
    background: #070012;
    padding: 12px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 30px;
}

.top-contact a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.top-contact i {
    color: #b797ff;
    margin-right: 8px;
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: .4s;
}

.top-social a:hover {
    background: #7B4CE2;
    border-color: #7B4CE2;
}

/* Main Header */

.main-header {
    background: white;
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo img {
    width: 210px;
}

/* Nav */

.nav-menu ul {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #16233b;
    font-size: 17px;
    font-weight: 500;
    transition: .4s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #744EB9;
}

/* Right Side */

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-btn {
    font-size: 24px;
    cursor: pointer;
}

.reach-btn {
    background: #7B4CE2;
    color: white;
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.reach-btn:hover {
    background: #6536cc;
}

/* Mobile Toggle */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Responsive */

@media(max-width:991px){

.top-header .container{
    flex-direction:column;
    gap:15px;
}

.top-contact{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

.nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:white;
    display:none;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.nav-menu.active{
    display:block;
}

.nav-menu ul{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.reach-btn,
.search-btn{
    display:none;
}

.menu-toggle{
    display:block;
}

.logo img{
    width:170px;
}

} 

navbar ends









.custom-nav {
    background: rgba(10, 10, 30, 0.9);
    padding: 15px 0;
}

.navbar-brand,
.nav-link {
    color: white !important;
}

.btn-main {
    background:#744EB9;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
}

.hero {
    height: 100vh;
    background: url('images/banner.jpg') center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 700px;
    
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.section-space {
    padding: 100px 0;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.why-box {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
}

.project-img {
    border-radius: 15px;
    transition: 0.4s;
}

.project-img:hover {
    transform: scale(1.05);
}

.cta {
    background: #111827;
    color: white;
    padding: 80px 0;
}

footer {
    background: black;
    color: white;
    padding: 20px;
}

/* Hero sections  */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-box {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.hero-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* exact slant effect */

.left-box {
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
}

.center-box {
    margin-left: -8%;
    margin-right: -8%;
    clip-path: polygon(18% 0, 85% 0, 70% 100%, 5% 100%);
}

.right-box {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 10% 100%);
}

/* dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.65);
    z-index: 2;
}


/* breadcrumb section  */

.breadcrumb-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    background: url("images/banner\ -\ aqil.jpg") center center/cover no-repeat;
    overflow: hidden;
}

/* Background Zoom Animation */

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    animation: zoomBg 15s infinite alternate ease-in-out;
    z-index: 1;
}

/* Overlay */

.breadcrumb-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 5, 18, 0.88),
        rgba(8, 5, 18, 0.65)
    );
    z-index: 2;
}

/* Content */

.breadcrumb-content {
    position: relative;
    z-index: 5;
    color: white;
    animation: fadeUp 1.2s ease;
}

.breadcrumb-content h1 {
    font-size: 72px;
    font-family: "Righteous", sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

/* Breadcrumb */

.breadcrumb-content ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    text-align: center;
    justify-content: center;
}

.breadcrumb-content ul li {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    position: relative;
}

.breadcrumb-content ul li a {
    text-decoration: none;
    color: #7B4CE2;
    font-weight: 600;
}

.breadcrumb-content ul li:not(:last-child)::after {
    content: "/";
    margin-left: 15px;
    color: rgba(255,255,255,0.5);
}

/* Floating Particles */

.particles span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: floatParticle 8s infinite linear;
    z-index: 3;
}

.particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 8s;
}

.particles span:nth-child(2) {
    top: 70%;
    left: 20%;
    animation-duration: 10s;
}

.particles span:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-duration: 12s;
}

.particles span:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-duration: 9s;
}

.particles span:nth-child(5) {
    top: 15%;
    right: 40%;
    animation-duration: 11s;
}

/* Animations */

@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(-180px);
        opacity: 0;
    }
}

/* Responsive */

@media(max-width:991px){

.breadcrumb-section {
    height: 350px;
}

.breadcrumb-content h1 {
    font-size: 42px;
}

.breadcrumb-content ul li {
    font-size: 15px;
}

}







/* content */

.hero-content {
    position: absolute;
    width: 100%;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    color: white;
}

.hero-content h2 {
    font-size: 72px;
    
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 130px;
        font-family: "Righteous", sans-serif;

    font-weight: 500;
    color: #b797ff;
    line-height: 1;
    margin-bottom: 30px;
}

.service-tag {
    display: inline-block;
    background: #b797ff;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
}

.line-divider {
    width: 520px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 30px auto;
}

.hero-content p {
    width: 700px;
    margin: auto;
    font-size: 24px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    margin-top: 40px;
}

.btn-main {
    display: inline-block;
    padding: 18px 40px;
    background:#b797ff;
    color: white;
    border-radius: 35px;
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    font-weight: 500;
}

.btn-outline {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid white;
    color: white;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Reddit Sans', sans-serif;

}

/* responsive */

@media(max-width:991px){

.hero-content h2{
    font-size:30px;
}

.hero-content h1{
    font-size:40px;
    font-weight: 500;
}

.hero-content p{
    width:90%;
    font-size:16px;
}

.line-divider{
    width:250px;
}

.service-tag{
    font-size:14px;
    padding:10px 20px;
}

.hero-wrapper{
    flex-direction:column;
}

.left-box,
.center-box,
.right-box{
    clip-path:none;
    margin:0;
}

}

/* about us sections  */

.about-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.about-content {
    position: relative;
}

.about-content::before {
    content: "ABOUT";
    position: absolute;
    top: -50px;
    left: 0;
    font-size: 130px;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    z-index: 0;
}

.about-subtitle {
    color: #7B4CE2;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 31px;
    font-family: "Righteous", sans-serif;
    font-weight: 700;
    color: #16233b;
    margin: 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 18px;
    color: #6d7485;
    line-height: 2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Services */

.service-boxes {
    display: flex;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 40px;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid #ddd;
    transition: 0.4s;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: white;
    transform: translateY(-8px);
}

.service-item img {
    width: 65px;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
}

/* Director */

.director-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
}

.director-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.director-info img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

.director-info h5 {
    font-size: 28px;
    margin-bottom: 5px;
}

.director-info span {
    color: #777;
}

.contact-btn {
    background: #7B4CE2;
    color: white;
    padding: 16px 35px;
    border-radius: 35px;
    text-decoration: none;
}

/* Right Images */

.about-images {
    padding-left: 40px;
}

.top-images {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.img1,
.img2 {
    width: 48%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.img3 {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile */

@media(max-width:991px){

.about-content::before{
    font-size:70px;
    top:-20px;
}

.about-content h2{
    font-size:32px;
}

.about-content p{
    font-size:16px;
}

.service-boxes{
    flex-direction:column;
}

.service-item{
    border-right:none;
    border-bottom:1px solid #ddd;
}

.director-box{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.about-images{
    padding-left:0;
    margin-top:40px;
}

.top-images{
    flex-direction:column;
}

.img1,
.img2{
    width:100%;
}

}

/* services secions  */

.services-section {
    padding: 100px 0;
    background: #f4f4f9;
    position: relative;
}

/* Section Heading */

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::before {
    content: "SERVICES";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    z-index: 0;
}

.section-title span {
    color: #7B4CE2;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 48px;
    font-family: "Righteous", sans-serif;
    font-weight: 700;
    margin: 20px 0;
    color: #16233b;
    position: relative;
    z-index: 2;
}

.section-title p {
    width: 700px;
    margin: auto;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Cards */

.service-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card img {
    width: 100%;
    border-radius: 16px;
    height: 260px;
    object-fit: cover;
}

.service-card h3 {
    text-align: center;
    font-size: 22px;
    font-family: "Righteous", sans-serif;
    font-weight: 700;
    margin: 25px 0 20px;
    color: #16233b;
}

.service-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "•";
    color: #7B4CE2;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Button */

.service-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #7B4CE2;
    color: white;
    padding: 16px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.service-btn:hover {
    background: #6234c9;
}

/* Mobile */

@media(max-width:991px){

.section-title::before{
    font-size:60px;
    top:-15px;
}

.section-title h2{
    font-size:32px;
}

.section-title p{
    width:100%;
    font-size:16px;
}

.service-card h3{
    font-size:20px;
}

.service-card ul{
    grid-template-columns:1fr;
}

}
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 35px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-list li {
    font-size: 17px;
    font-weight: 500;
    color: #4b4b4b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    font-size: 14px;
    color: #7B4CE2;
}

/* Mobile */

@media(max-width:768px){
    .service-list{
        grid-template-columns: 1fr;
    }
}

/* FEATURES */

.features-section {
    padding: 100px 0;
    background: #f5f5fb;
    position: relative;
    overflow: hidden;
}

/* Section Heading */

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title::before {
    content: "FEATURES";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    font-family: "Righteous", sans-serif;
}

.section-title span {
    color: #7B4CE2;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 58px;
    color: #16233b;
    margin: 10px 0 20px;
    font-family: "Righteous", sans-serif;
    position: relative;
    z-index: 2;
}

.section-title p {
    width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    position: relative;
    z-index: 2;
}

/* Cards */

.feature-card {
    background: #efeff6;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    padding-top: 20px;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Feature Image */

.feature-image {

    overflow: hidden;
      width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
    


.feature-image img {
    
    object-fit: cover;
    transition: 0.5s;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

/* Content */

.feature-card h3 {
    font-size: 18px;
    color: #16233b;
    margin: 25px 25px 15px;
    line-height: 1.4;
    font-weight: 500;
    font-family: "Righteous", sans-serif;

}

.feature-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    padding: 0 25px 30px;
}

/* Mobile */

@media(max-width:991px){

.section-title::before{
    font-size:60px;
    top:-10px;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    width:100%;
    font-size:16px;
}

.feature-image{
    height:auto;
}

.feature-card h3{
    font-size:20px;
}

.feature-card p{
    font-size:15px;
}

}

/* CTA css  */

.cta-section {
    position: relative;
    padding: 130px 0;
    background: url("images/cta-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 20, 0.78);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: #fff;
}

.cta-content span {
    color: #9a74ff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-family: "Righteous", sans-serif;
    line-height: 1.3;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.primary-btn {
    background: #7B4CE2;
    color: white;
}

.primary-btn:hover {
    background: white;
    color: #7B4CE2;
}

.secondary-btn {
    border: 1px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: #111;
}

/* Responsive */

@media(max-width:991px){

.cta-content h2{
    font-size: 38px;
}

.cta-content p{
    font-size:16px;
}

}

@media(max-width:576px){

.cta-section{
    padding:90px 0;
}

.cta-content h2{
    font-size:30px;
}

.cta-btn{
    width:100%;
}

}

/* footer sections */

.main-footer {
    position: relative;
    padding-top: 90px;
    color: #fff;
    background: url("images/footer-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
    z-index:1;
}

/* Dark Overlay */

.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 18, 0.92);
    z-index: -1;
}

/* Footer Widgets */

.footer-widget {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 16px;
}

/* Headings */

.footer-widget h4 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: "Righteous", sans-serif;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #7B4CE2;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
}

/* Footer Links */

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: 0.4s;
}

.footer-widget ul li a:hover {
    color: #7B4CE2;
    padding-left: 8px;
}

/* Contact Info */

.footer-contact li {
    display: flex;
    gap: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
}

.footer-contact li i {
    color: #7B4CE2;
    margin-top: 6px;
    font-size: 15px;
}

/* Social Icons */

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.4s ease;
}

.footer-social a:hover {
    background: #7B4CE2;
    transform: translateY(-6px);
    border-color: #7B4CE2;
}

/* Bottom Footer */

.footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Responsive */

@media(max-width:991px){

.footer-widget {
    margin-bottom: 35px;
}

.footer-widget h4 {
    font-size: 20px;
}

.footer-logo img {
    width: 160px;
}

}

/* about us css start*/

.about-company {
    padding: 100px 0;
    background: #f7f8fc;
    position: relative;
}

/* Container */

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

/* Section Title */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #7B4CE2;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 54px;
    font-family: "Righteous", sans-serif;
    color: #16233b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title p {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* Company Overview */

.company-overview {
    margin-bottom: 70px;
}

.company-overview h3 {
    font-size: 34px;
    color: #16233b;
    margin-bottom: 20px;
    font-weight: 700;
}

.company-overview p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Corporate Values */

.corporate-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.value-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
    transition: 0.4s;
}

.value-box:hover {
    transform: translateY(-10px);
}

.value-box h4 {

    font-family: "Righteous", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #16233b;
}

.value-box p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Core Strength */

.core-strength {
    margin-bottom: 70px;
}

.core-strength h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #16233b;
}

.core-strength ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    list-style: none;
}

.core-strength ul li {
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 16px;
    color: #444;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.core-strength ul li:hover {
    transform: translateX(8px);
    color: #7B4CE2;
}

/* Closing Statement */

.company-closing {
    background: #16233b;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.company-closing p {
    color: white;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size: 36px;
    }

    .section-title p{
        font-size: 16px;
    }

    .company-overview h3,
    .core-strength h3{
        font-size: 28px;
    }

    .corporate-values{
        grid-template-columns: 1fr;
    }

    .core-strength ul{
        grid-template-columns: 1fr;
    }

    .company-closing p{
        font-size: 17px;
    }

}


/* services css code */

/* 

.corporate-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */

.section-title {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
}

.section-title span {
    color: #7B4CE2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 35px;
    font-family: "Righteous", sans-serif;
    color: #16233b;
    margin: 18px 0;
    line-height: 1.2;
    max-width: 850px;
    margin-inline: auto;
    font-weight: 500;
}

.section-title p {
    max-width: 780px;
    margin: auto;
    font-size: 18px;
    color: #6d6d6d;
    line-height: 1.9;
}

/* Service Card */

.service-box {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: 0.5s ease;
    border: 1px solid rgba(255,255,255,0.6);
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.service-box.reverse {
    flex-direction: row-reverse;
}

/* Image Side */

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.6s;
}

.service-box:hover .service-image img {
    transform: scale(1.04);
}

/* Floating Tag */

.service-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(123, 76, 226, 0.12);
    border-radius: 50%;
    top: -25px;
    right: -25px;
    z-index: -1;
}

/* Content Side */

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 40px;
    color: #16233b;
    font-family: "Righteous", sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

/* List */

.service-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-content ul li {
    background: white;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 15px;
    color: #444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.35s;
    position: relative;
    padding-left: 45px;
}

.service-content ul li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #7B4CE2;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content ul li:hover {
    transform: translateX(8px);
    color: #7B4CE2;
}

/* Divider */

.service-box:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media(max-width:991px){

.service-box,
.service-box.reverse {
    flex-direction: column;
    gap: 35px;
    padding: 25px;
}

.section-title h2 {
    font-size: 36px;
}

.service-content h3 {
    font-size: 28px;
}

.service-content ul {
    grid-template-columns: 1fr;
}

.service-image img {
    height: 320px;
}

}

@media(max-width:576px){

.section-title h2 {
    font-size: 30px;
}

.section-title p {
    font-size: 15px;
}

.service-content p {
    font-size: 15px;
}

} 

/* Contact us codes */

.contact-page {
    padding: 100px 0;
    background: #f8f9fc;
}

/* Section Title */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #7B4CE2;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* .section-title h2 {
    font-size: 52px;
    text-align: center;
    color: #16233b;
    margin: 12px 0;
    font-family: "Righteous", sans-serif;
} */

.section-title p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* Wrapper */

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Left Info */

.contact-info {
    flex: 1;
    display: grid;
    gap: 20px;
}

.info-box {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.info-box h4 {
    font-family: "Righteous", sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #16233b;
}

.info-box p {
    color: #666;
    line-height: 1.7;
}

/* Form */

.contact-form {
    flex: 1.2;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
}

.form-group textarea {
    height: 160px;
    resize: none;
}

.full-width {
    grid-column: span 2;
}

.contact-btn {
    background: #7B4CE2;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #16233b;
}

/* Map */

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* CTA */

.contact-cta {
    padding: 80px 0;
    background: #16233b;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-box h3 {
    color: white;
    font-size: 34px;
    max-width: 650px;
}

.cta-box a {
    background: #7B4CE2;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
}

/* Responsive */

@media(max-width:991px){

.contact-wrapper {
    flex-direction: column;
}

.contact-form form {
    grid-template-columns: 1fr;
}

.full-width {
    grid-column: span 1;
}

.cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.section-title h2 {
    font-size: 36px;
}

}

@media(max-width:576px){

.contact-page {
    padding: 60px 0;
}

.contact-form {
    padding: 20px;
}

.section-title h2 {
    font-size: 28px;
}

.cta-box h3 {
    font-size: 24px;
}

.map-section iframe {
    height: 300px;
}

}



/* Interior Designing css code  */



@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Reddit+Sans:wght@300;400;500;600;700&display=swap');

.interior-premium {
    padding: 100px 8%;
    background: #fafafa;
    font-family: 'Reddit Sans', sans-serif;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Main Image */
.premium-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 25px;
}

/* Content */
.premium-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

.premium-content h1 {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #000000;
    line-height: 1.2;
    margin: 20px 0;
}

.premium-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

/* Cards */
.premium-card {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #744db9;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.premium-card h2 {
    font-family: 'Righteous', cursive;
    color: #744db9;
    font-size: 24px;
    margin-bottom: 12px;
}

.premium-card p {
    margin: 0;
}

/* Bottom Gallery */
.premium-gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.strip-box {
    overflow: hidden;
    border-radius: 18px;
}

.strip-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

.strip-box:hover img {
    transform: scale(1.08);
}

/* Tablet */
@media (max-width: 991px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-image-main img {
        height: 500px;
    }

    .premium-content h1 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .interior-premium {
        padding: 70px 6%;
    }

    .premium-content h1 {
        font-size: 30px;
    }

    .premium-gallery-strip {
        grid-template-columns: 1fr;
    }

    .strip-box img {
        height: 240px;
    }
}


/* Hide Top Header on Mobile */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }
}
@media (max-width: 576px) {
    .top-header {
        display: none;
    }
}