:root {
  --primary-gold: #bc984d;
  --secondary-blue:#2e4b75;
  --dark-charcoal: #2b2b2b;
  --warm-beige: #f5f1ea;
  --light-gray: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  color: #e3ded6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}
a{
    text-decoration: none;
}

.navbar {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px #0000001a;
    position: relative;
    z-index: 9;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding:5px 0;
    position: fixed;
    width: 100%;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    letter-spacing: 1px;
    padding: 0;
    position: relative;
    z-index: 2;
}
.nav-link {
    color: var(--text-dark);
    font-size: 0.80rem;
    margin-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hero-section {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.heroSwiper {
  height: 100%;
}

.swiper-slide {
  height: 100%;
}

.slide-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 241, 234, 0.85) 0%, rgba(232, 224, 213, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  width: 30%;
  position: absolute;
  top: 5%;
  right: 5%;
}

.swiper-pagination {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  background: var(--primary-gold);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: var(--secondary-blue);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--dark-charcoal);
  margin-bottom: 0;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

.btn-custom {
  background: var(--primary-gold);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background: var(--dark-charcoal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 60px;
  background: var(--primary-gold);
  position: relative;
  animation: scrollDown 2s infinite;
}
 .contact-container {
            max-width: 1200px;
            width: 100%;
            margin: auto;
        }


        .form-section {
            padding: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            animation: fadeIn 1s ease;
        }
.social-links .social-link.p-1:hover svg{
    fill: #fff;
}
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .section-subtitle {
            color: #6c757d;
            margin-bottom: 30px;
        }

        .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
            transform: translateY(-2px);
        }

        .form-label {
            position: absolute;
            left: 20px;
            top: 15px;
            color: #6c757d;
            pointer-events: none;
            transition: all 0.3s ease;
            background: white;
            padding: 0 5px;
        }

        .form-control:focus + .form-label,
        .form-control:not(:placeholder-shown) + .form-label {
            top: -10px;
            font-size: 0.85rem;
            color: #667eea;
        }

        textarea.form-control {
            resize: none;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 15px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        .submit-btn.success {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }

        .location-section {
    background: #304d78;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        .location-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            animation: slideInRight 0.8s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            transition: all 0.3s ease;
        }

        .info-item:hover .info-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(5deg);
        }

        .info-content h5 {
            font-weight: 600;
            margin-bottom: 5px;
            text-align: left;
        }

        .info-content p {
            opacity: 0.9;
            margin: 0;
        }

        .map-preview {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
            width: 100%;
        }

        .map-icon {
            position: absolute;
            font-size: 4rem;
            color: #ad8b47;
            animation: bounce 2s infinite;
        }

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

        .map-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: white;
            padding: 10px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            font-weight: 600;
            color: #333;
        }

        .success-icon {
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
        .customicon svg, .customicon svg path {
    fill: var(--primary-gold);
    width: 60%;
}
.customicon:hover svg, .customicon:hover svg path{
    fill: #fff;
}

        @media (max-width: 768px) {
            .form-section, .location-section {
                padding: 0px;
            }
.form-group{
    margin-bottom: 15px;
}
.contact-card{
    padding:15px;
}
.location-section{
    margin-top: 25px;
    padding:25px;
}
            .section-title {
                font-size: 2rem;
            }

            .location-title {
                font-size: 1.5rem;
            }
        }
@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 5px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-charcoal);
  font-weight: 300;
}

.section-text {
    color: #000;
    margin-bottom: 15px;
    font-size: 19px;
    line-height: 30px;
    font-weight: 300;
}

.section-text-emphasis {
    font-size: 3rem;
    color: var(--text-dark);
    margin: 5rem 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-content {
  padding-left: 3rem;
}
.logo {
    width: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo h1 {
    display: grid;
    margin: 0;
    line-height: 1.2;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0;
    text-align: center;
}
.logo h1 span {
    font-size: 14px;
    letter-spacing: 2.5px;
}
.container {
    max-width: 90%;
}
.web-container {
    max-width: 90%;
    margin: auto;
}
img {
    max-width: 100%;
}
.Aboutus{
	position:relative;	
}
.Aboutus:before{
	content: '';
	background-image:url('images/layers.webp');
	    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0.2;
	
}
.contactBG {
    background: #0d2b57;
}
em{
        font-family: none;
    font-size: 19px;
    line-height: 20px;
}
.portfolio-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0 3rem;
            margin-bottom: 3rem;
        }
        
        
        
        
        .tab-content {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: transparent;
            border: none;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: transform 0.2s ease;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
        }

        .lightbox-caption h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .lightbox-caption p {
            font-size: 1rem;
            opacity: 0.8;
        }

        .lightbox-counter {
            position: absolute;
            top: -50px;
            left: 0;
            color: white;
            font-size: 1rem;
        }
          body {
            background: #f8f9fa;
            font-family: 'Montserrat', sans-serif;
        }
        
        .internal-section {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .internal-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .filter-container {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin: 3rem 0;
        }
        
        .nav-pills .nav-link {
            color: #8b7355;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            margin: 0 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
        }
        
        .nav-pills .nav-link:hover {
            background: #f5f1ed;
            transform: translateY(-2px);
        }
        
        .nav-pills .nav-link.active {
            background: #8b7355;
            color: white;
            box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background: white;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(139, 115, 85, 0.95) 0%, transparent 100%);
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
        }
        
        .gallery-overlay p {
            color: #f5f1ed;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .tab-content {
            animation: fadeIn 0.5s ease-in;
            margin-bottom: 4rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Modal/Lightbox Styles */
        .project-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .project-modal.active {
            display: flex;
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 1200px;
            width: 90%;
            max-height: 90vh;
            background: white;
            border-radius: 0;
            overflow: hidden;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #333;
            font-size: 30px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: white;
            transform: rotate(90deg);
        }

        .modal-gallery {
            position: relative;
            height: 600px;
            background: #000;
        }

        .modal-gallery img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #333;
            font-size: 24px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-nav:hover {
            background: white;
        }

        .modal-prev {
            left: 20px;
        }

        .modal-next {
            right: 20px;
        }

        .modal-info {
            padding: 2rem;
            max-height: 200px;
            overflow-y: auto;
        }

        .modal-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: #8b7355;
            margin-bottom: 0.5rem;
        }

        .modal-info .category {
            color: #999;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .modal-info p {
            color: #666;
            line-height: 1.8;
        }

        .modal-counter {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            color: #333;
            font-size: 0.9rem;
            z-index: 10;
        }

        .thumbnail-strip {
            display: flex;
            gap: 10px;
            padding: 1rem 2rem;
            overflow-x: auto;
            background: #f8f9fa;
        }

        .thumbnail-strip img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .thumbnail-strip img:hover,
        .thumbnail-strip img.active {
            opacity: 1;
            transform: scale(1.1);
        }
        .service-card a {
    text-decoration: none;
    margin-top: 25px;
    display: inline-block;
    color: #d5950f;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: small;
    border-radius: 1px;
    font-weight: 600;
}
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.bg-light {
  background: var(--warm-beige);
}

.service-card {
  background: #f7f5f5;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 230px;
}

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

.service-icon {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.service-title {
    font-size: 2rem;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 43, 43, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: var(--primary-gold);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover, .contact-container .contact-card {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.contact-container .contact-card a {
    color: #fff;
}
.contact-icon {
  color: var(--primary-gold);
}

.contact-card h4 {
  font-size: 1.2rem;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  color: var(--primary-gold);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(201, 166, 104, 0.3);
}

.reviewsSwiper {
  padding-bottom: 80px;
}

.review-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  background: var(--secondary-blue);
}

.review-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.review-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.review-text {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
  height: 150px;
}

.review-author {
  border-top: 1px solid #435f89;
  padding-top: 1.5rem;
}

.review-author h4 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 0.3rem;
}

.review-author p {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin: 0;
  display: none;
}

.reviews-pagination {
  text-align: center;
}

.swiper-pagination.reviews-pagination {
  bottom: 0 !important;
}

.footer {
  background: #103367;
  padding: 2rem 0;
  color: var(--white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.footer-tagline {
  color: var(--primary-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
}

iframe {
    width: 100%;
    height: 100%;
}
.ftrlogo img {
    width: 150px;
}

.ftrlogo {align-items: center;text-decoration: none;color: #000;padding: 10px 20px;border-radius: 25px;background: #fff;}

.ftrlogo h3 {
    margin: 0;
    display: grid;
    font-size: 34px;
    text-transform: uppercase;
    line-height: 30px;
    justify-content: center;
}

.ftrlogo span {
    font-size: 15px;
    letter-spacing: 5px;
    text-align: center;
}
@media (max-width: 768px) {
  .nav-link {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .portfolio-item {
    height: 300px;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1450px) {
    .nav-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-left: 10px;
}

.review-author h4{
    font-size: 1.5rem;
}
.review-text{
    height: 250px;
}
.logo {
    width: 80px;
}

.logo h1 {
    font-size: 21px;
}

.logo h1 span {
    font-size: 12px;
    letter-spacing: 1px;
}
.section-title {
    font-size: 40px;
    line-height: 50px;
}

}
@media (max-width: 990px) {
    .navbar-collapse {
    margin-top: 30px;
    border-top: 10px solid #2c4973;
    padding-top: 30px;
}
.btn-custom {
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 4px;
}
.container{
    padding: 0;
}
.section-title {
        font-size: 30px;
        line-height: 40px;
    }
.nav-link, .web-container {
    width: 100%;
    margin: 0;
    max-width: 100%;
}
.logo h1 {font-size: 15px;}

.logo h1 span {
    font-size: 8px;
    letter-spacing: 1px;
}
.section-text {
    color: #000;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 28px;
    font-weight: 300;
}
.logo {
    width: 60px;
    gap:5px
}
.navbar-collapse .nav-item {
    padding: 10px 0;
    border-bottom: solid 1px #ededed;
}

.navbar-collapse .nav-item:last-child {
    border: none;
}
    .hero-content {
    width: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.ftrlogo {
    flex-wrap: wrap;
}

.ftrlogo h3 {
    font-size: 22px;
    line-height: 22px;
    width: 100%;
}

.ftrlogo span {
    font-size: 11px;
    letter-spacing: 3px;
}

.ftrlogo img {
    margin: auto;
}
.internal-section {
    height: 200px;
}
.swiper-button-next, .swiper-button-prev {
    width: 35px;
    height: 35px;
}
.hero-section{
    height: 60vh;
}
.hero-title{
    font-size: 36px;
    color: #fff;
}
.hero-subtitle{
    color: #fff;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 13px;
}
.review-text{
    height: auto;
}
.filter-container {
    box-shadow: none;
    overflow: auto;
    padding: 0;
    display: flex;
    margin-bottom: 15px;
}

.filter-container ul {
    flex-wrap: nowrap !important;
    border-radius: 0;
}

.nav-pills .nav-link {
    font-size: 13px;
    white-space: nowrap;
    padding: 10px 10px;
    border-radius: 0;
}
.section-text-emphasis {
    margin: 30px 0 50px;
    font-size: 1.5rem;
}
.nav-pills .nav-link {
    margin: 0;
}
}
@media (max-width: 390px) {
 .container {
    max-width: 96%;
}   
.logo h1 {}

.logo h1 span {
}

.logo {
    width: 50px;
    gap:5px
}
.social-link {
        width: 40px;
        height: 40px;
    }
    .social-links {
        gap: 0.5rem;
    }
}